
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "Inter", sans-serif!important;

    background: #d6dffa;
    background-size: cover;
}

.main {
    border-radius: 10px;
    width: 350px;
    height: 510px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 20px 40px 0px rgb(53 56 155 / 17%);
}

.main .logo {
    /* padding: 30px 10px; */
    height: auto;
}

#chk {
    display: none;
}

.signup {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.signup form {
    width: 100%;
}

label {
    color: #000;
    font-weight: 400;
    font-size: 1.8em;
    justify-content: center;
    display: flex;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
    padding-bottom: 5%;
}

input {
    width: 280px;
    height: 20px;
    background: transparent;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 6px;
        border: 1px solid #d6dffa;
            color: #2E3192;
}
input::placeholder{
    color: #2E3192;
}

.login-btn {
    width: 300px;
    height: 40px;
    margin: 10px auto;
    justify-content: center;
    display: block;
    color: #FFFFFF;
    background: #e2251d;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
    padding: 10px;
    font-family: "Inter", sans-serif!important;

}

.login-btn:hover {
    background: #FFFFFF;
    color: #000000;
}

.register-show {
    padding-top: 5px;
}

.register-show .login-btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.login {
    height: 460px;
    background: #f4f4ff;
    /* border-radius: 60% / 10%; */
    transform: translateY(-135px);
    transition: .8s ease-in-out;
    position: relative;
    top: -120px;
    border-radius: 10px;
}

.login label {
    color: #2e3192;
    transform: scale(.6);
}

#chk:checked ~ .login {
    transform: translateY(-340px);
}

#chk:checked ~ .login label {
    transform: scale(1);
    padding-top: 6%;
}

#chk:checked ~ .signup label {
    transform: scale(.6);
}

.register-info-box {
    padding: 0 50px;
    top: 10%;
    right: 0;
}

.alignText {
    text-align: center;
    padding: 25px 0;
}

.invalid-feedback {
    font-size: 15px;
    font-weight: 100;
    display: flex;
    justify-content: center;
    color: #ffffff;
    letter-spacing: 1px;
    padding-left: 5px;
    padding-right: 5px;
}

.primary_btn {
    width: fit-content;
    display: flex;
    margin-top: 0px;
    padding: 8px 30px 8px 33px;
    font-size: 16px;
    line-height: 30px;
font-weight: 600;
background-color: #D6DFFA;
    color: #2E3192;
      border-radius: 5px;
    grid-gap: 50px;
    align-items: center;
    border: unset;
    margin: auto;
    text-transform: uppercase;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    cursor: pointer;
}
.primary_btn .circle {
    width: 30px;
    height: 30px;
    background: #d82535;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.primary_btn:hover {
    background-color: #2E3192;
    color: #D6DFFA;
}
.primary_btn:hover .circle {
    background: #e2251d;
    color: #e2251d;
}
input#forgot_password_btn {
    background: #2E3192;
    height: fit-content;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #ffff;
    text-transform: uppercase;
    cursor: pointer;
    width: 85%;
}
input#forgot_password_btn:hover{
    color: #2E3192;
    background-color: #fff;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}