body.page-index:not(.has-site-header){
    background: #f6f8fc !important;
    color: #0f172a;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.login-section{
    width: min(500px, calc(100% - 32px));
    margin: auto;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(230, 235, 245, 0.95);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

.login-section img{
    width: min(260px, 72%);
    margin-bottom: 16px;
    object-fit: contain;
}

.login-section .page-heading{
    height: auto;
    padding: 0 0 20px;
}

.login-section .page-heading h1{
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
}

.login-section .page-heading .fade-line{
    display: none;
}

.login-section .form{
    width: 100%;
    margin: 0;
}

.login-section .form .form-section{
    width: 100%;
    height: auto;
    left: auto;
    margin: 0;
    display: grid;
    gap: 14px;
    overflow: visible;
}

.login-section .form .form-section input:not([type="checkbox"]){
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #e6ebf5;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #334155;
    font: inherit;
    font-size: 14px;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.login-section .form .form-section input:not([type="checkbox"]):focus{
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.login-section .form .form-section input::placeholder{
    color: #94a3b8;
}

.login-section .form .form-section .form-1-col,
.login-section .form .form-section .form-2-col{
    display: grid;
    gap: 12px;
    align-items: center;
}

.login-section .form .form-section .form-2-col{
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
    padding: 4px 0 0;
}

.login-section .form .form-section .remember-col label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.login-section .form .form-section .remember-col #remember{
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #7c3aed;
    cursor: pointer;
}

.login-section .form .form-section .btns{
    padding: 0;
}

.login-section .form .form-section .btns .btn{
    width: auto;
    min-width: 110px;
    height: 42px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 20px rgba(124, 58, 237, 0.22);
}

::-ms-reveal{
    filter: none;
}

@media screen and (max-width: 40rem){
    .login-section{
        padding: 22px;
    }

    .login-section .form .form-section .form-2-col{
        grid-template-columns: 1fr;
    }

    .login-section .form .form-section .btns .btn{
        width: 100%;
    }
}
