textarea:focus,
input:focus,
select:focus {
    outline: none;
}


.form_section {
    background: #F3F3FC;
    /* padding-top: 160px; */
}

.form_wrapper {
    width: 60% !important;
    border-radius: 16px !important;
    background: #FFF;
    box-shadow: 4px 4px 29px 0px rgba(0, 0, 0, 0.08) !important;
    max-width: 545px !important;
}

.login_text {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.login_subtext {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cross_icon {
    border-radius: 48px;
    background: rgba(57, 157, 216, 0.08);
    width: 50px;
    height: 50px;
}

.form_input {
    display: flex;
    padding: 12px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #ACACAC;
}

.terms_text {
    color: #A4A4A4;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.submit_button {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    background: #242276;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.have_account {
    color: #A4A4A4;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.create_account {
    color: #242276;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
}

.forgot_link {
    font-size: 16px !important;
    margin-top: 0.5rem !important;
    padding-inline: 0;
    text-decoration: none;
}

@media screen and (max-width:990px) {
    .form_wrapper {
        width: 100% !important;
    }
}

@media screen and (max-width:546px) {
    .login_text {
        font-size: 32px;
    }

    .login_subtext {
        font-size: 12px;
    }

    .select_form {
        padding-inline: 1px !important;
    }
}