body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #344A7D;
    background: linear-gradient(to bottom, #8CAAEE, #344A7D);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-y: hidden;
    /* height: 800px; */
    height: 100%;
    height: 100vh;
    height: 100svh;
    /* width: 600px; */
    width: 100%;
    width: 100vw;
    width: 100svw;
}

.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100svh;
}


.under-line {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #000000;
    background-color: #ffffff;
    height: 30px;
    line-height: 30px;
    display: block;
    font-weight: 400;
}
.login-form {
    box-sizing: border-box;
    position: relative;
    width: 340px;
    height: 300px;
    padding: 70px 40px 20px;
    top: -20px;
}
.form_login_icon {
    left: 50%;
    top: 0px;
    width: 120px;
    height: 120px;
    background-color: #00254D;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form_login_icon > img {
    width: 64px;
    height: 64px;
    margin-bottom: 6px;
}
.form_background {
    background-color: rgba(216, 216, 216, 0.5);
    border-radius: 50px;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.login-form h2 {
    font-size: 20px;
    text-align: center;
    margin: 0px 0px 20px 0px;
}
.input_container {
    display: flex;
}
.input_container > label {
    height: 40px;
    width: 40px;
    background-color: #00254D;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 0px 0px 5px;
}
.input_container > label > img {
    width: 20px;
    height: 20px;
}

.input_container > input {
    padding-left: 8px;
    border-radius: 0px 5px 5px 0px;
    border: 0px;
    background-color: #004c9c;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex-grow: 1;
}
input:focus {
    outline: none;
}
::placeholder {
    color: #4791dc;
    opacity: 1; /* Firefox */
  }
  
  ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #4791dc;
  }

.login-form button {
    /* transform: translateX(-50%); */
    width: 240px;
    height: 40px;
    /* bottom: -52px; */
    /* left: 50%; */
    /* position: absolute; */
	display: block;
    margin-top: 20px;
    background: #F39F65;
    color: #fff;
    border: none;
    border-radius: 24px 24px 24px 24px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.2s;
    margin: 20px auto 0px;
}
.login-form button:hover {
    background: #e3a57a;
    color: #282828;

    transition: all 0.2s;
}


@media screen and (max-width: 550px) {
    .login-form {
        top: -40px;
    }
}
