/*=========================================
LOGIN PAGE
=========================================*/

.login-section{
    padding:80px 0;
    background:#f5f7fb;
    min-height:calc(100vh - 180px);
    display:flex;
    align-items:center;
}

.login-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.login-card{
    max-width:500px;
    margin:auto;
    background:#ffffff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #ececec;
}

.login-header{
    text-align:center;
    margin-bottom:35px;
}

.login-header h2{
    font-size:32px;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

.login-header p{
    color:#6b7280;
    font-size:15px;
    line-height:1.6;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
    color:#374151;
}

.form-group input{
    width:100%;
    height:55px;
    border:1px solid #d1d5db;
    border-radius:10px;
    padding:0 18px;
    outline:none;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.form-group input:focus{
    border-color:#25D366;
    box-shadow:0 0 0 4px rgba(37,211,102,.12);
}

.form-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    font-size:14px;
}

.form-options label{
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    color:#374151;
}

.form-options input[type="checkbox"]{
    width:16px;
    height:16px;
    cursor:pointer;
}

.form-options a{
    color:#25D366;
    text-decoration:none;
    font-weight:600;
}

.form-options a:hover{
    text-decoration:underline;
}

.login-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:10px;
    background:#25D366;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    background:#1faa52;
}

.login-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.register-link{
    margin-top:25px;
    text-align:center;
    color:#6b7280;
    font-size:15px;
}

.register-link a{
    color:#25D366;
    font-weight:600;
    text-decoration:none;
}

.register-link a:hover{
    text-decoration:underline;
}

/*=========================================
ALERTS
=========================================*/

.alert{
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-size:15px;
}

.alert-success{
    background:#dcfce7;
    color:#166534;
    border:1px solid #86efac;
}

.alert-danger{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #fca5a5;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:768px){

    .login-section{
        padding:50px 15px;
    }

    .login-card{
        padding:30px 25px;
    }

    .login-header h2{
        font-size:28px;
    }

    .form-options{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

}

@media(max-width:480px){

    .login-card{
        padding:22px 18px;
        border-radius:12px;
    }

    .login-header h2{
        font-size:24px;
    }

    .login-header p{
        font-size:14px;
    }

    .form-group input{
        height:50px;
    }

    .login-btn{
        height:52px;
        font-size:16px;
    }

}