/* =========================================================
   LOGIN
========================================================= */

.login{
    padding:80px 0;
    background:#f8fafc;
}

.login .container{
    max-width:1200px;
    margin:auto;
}

.login-header{
    text-align:center;
    margin-bottom:50px;
}

.login-header h2{
    font-size:42px;
    color:#111827;
    margin-bottom:12px;
}

.login-header p{
    font-size:17px;
    color:#6b7280;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* =========================================================
   LOGIN WRAPPER
========================================================= */

.login-wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:stretch;
}

/* =========================================================
   LEFT INFO
========================================================= */

.login-info{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    padding:45px;
    border-radius:15px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 10px 30px rgba(37,99,235,.25);
}

.login-icon{
    width:100px;
    height:100px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:30px;
}

.login-icon i{
    font-size:42px;
}

.login-info h3{
    font-size:34px;
    margin-bottom:18px;
}

.login-info p{
    line-height:1.9;
    margin-bottom:30px;
    opacity:.95;
}

.login-info ul{
    list-style:none;
}

.login-info ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.login-info ul li i{
    color:#fde047;
}

/* =========================================================
   LOGIN FORM
========================================================= */

.login-form-box{
    background:#fff;
    padding:45px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.login-form-box h3{
    font-size:30px;
    margin-bottom:30px;
    color:#111827;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    font-weight:600;
    color:#374151;
}

.form-group input{
    width:100%;
    height:55px;
    padding:0 18px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
}

.form-group input:focus{
    outline:none;
    border-color:#2563eb;
    box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

/* =========================================================
   LOGIN OPTIONS
========================================================= */

.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.login-options label{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    color:#374151;
}

.login-options a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.login-options a:hover{
    text-decoration:underline;
}

/* =========================================================
   LOGIN BUTTON
========================================================= */

.login-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    font-size:17px;
    font-weight:600;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* =========================================================
   SOCIAL LOGIN
========================================================= */

.social-login{
    margin-top:35px;
    text-align:center;
}

.social-login p{
    color:#6b7280;
    margin-bottom:20px;
}

.social-buttons{
    display:flex;
    gap:15px;
}

.social-buttons a{
    flex:1;
    height:52px;
    border:1px solid #d1d5db;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#374151;
    font-weight:600;
    transition:.3s;
}

.social-buttons a i{
    font-size:18px;
}

.social-buttons a:hover{
    border-color:#2563eb;
    color:#2563eb;
    background:#f8fbff;
}

/* =========================================================
   REGISTER LINK
========================================================= */

.register-link{
    margin-top:30px;
    text-align:center;
    font-size:15px;
}

.register-link p{
    color:#6b7280;
}

.register-link a{
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
}

.register-link a:hover{
    text-decoration:underline;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .login-wrapper{
        grid-template-columns:1fr;
    }

    .login-info{
        order:2;
    }

    .login-form-box{
        order:1;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .login{
        padding:60px 0;
    }

    .login-header h2{
        font-size:32px;
    }

    .login-info,
    .login-form-box{
        padding:30px;
    }

    .social-buttons{
        flex-direction:column;
    }

    .login-options{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}

/* =========================================================
   EXTRA IMPROVEMENTS
========================================================= */

/* Login Section */
.login{
    padding:60px 0 80px;
}

/* Left Card */
.login-info{
    min-height:560px;
}

/* Form Card */
.login-form-box{
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-height:560px;
    transition:.3s;
}

.login-form-box:hover{
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

/* Input */
.form-group input::placeholder{
    color:#9ca3af;
}

.form-group input:hover{
    border-color:#93c5fd;
}

/* Checkbox */
.login-options input[type="checkbox"]{
    width:16px;
    height:16px;
    accent-color:#2563eb;
    cursor:pointer;
}

/* Button */
.login-btn{
    box-shadow:0 8px 20px rgba(37,99,235,.20);
}

.login-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(37,99,235,.30);
}

/* Social Buttons */
.social-buttons a{
    transition:.3s;
}

.social-buttons a:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/* Register Link */
.register-link{
    border-top:1px solid #e5e7eb;
    padding-top:25px;
}

/* Mobile */
@media(max-width:768px){

    .login-wrapper{
        gap:25px;
    }

    .login-info,
    .login-form-box{
        min-height:auto;
    }

}