/*=========================================
LOGIN PAGE
=========================================*/

.login-section{
    padding:80px 0;
    background:#fafafa;
    min-height:80vh;
    display:flex;
    align-items:center;
}

.login-wrapper{
    display:grid;
    grid-template-columns:minmax(0,1fr) 480px;
    gap:70px;
    align-items:center;
}

/*====================
LEFT SIDE
=====================*/

.login-content h2{
    font-size:46px;
    font-weight:700;
    color:#222;
    margin:15px 0;
    line-height:1.2;
}

.login-content p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    margin-bottom:40px;
}

.login-feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.login-feature i{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#edf3ee;
    color:#8AA08B;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.login-feature strong{
    display:block;
    font-size:18px;
    margin-bottom:5px;
}

.login-feature small{
    display:block;
    color:#777;
    font-size:14px;
    line-height:1.6;
}

/*====================
LOGIN CARD
=====================*/

.login-card{
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.login-header{
    margin-bottom:35px;
}

.login-header h3{
    font-size:34px;
    font-weight:700;
    margin:12px 0;
}

.login-header p{
    color:#666;
    margin-bottom:0;
}

.login-card label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}

.modern-input{
    width:100%;
    height:58px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    background:#fff;
    transition:all .3s ease;
    box-shadow:none!important;
}

.modern-input::placeholder{
    color:#b8b8b8;
}

.modern-input:focus{
    border-color:#8AA08B;
    box-shadow:0 0 0 4px rgba(138,160,139,.12)!important;
    outline:none;
}

.login-links{
    text-align:right;
    margin:22px 0 28px;
}

.login-links a{
    color:#8AA08B;
    font-weight:600;
    text-decoration:none;
}

.login-links a:hover{
    text-decoration:underline;
}

.login-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:50px;
    background:#8AA08B;
    color:#fff;
    font-size:17px;
    font-weight:700;
    transition:.3s;
    cursor:pointer;
}

.login-btn:hover{
    background:#6d866e;
    transform:translateY(-2px);
}

.login-btn i{
    margin-right:8px;
}

.login-divider{
    display:flex;
    align-items:center;
    margin:30px 0;
}

.login-divider::before,
.login-divider::after{
    content:"";
    flex:1;
    height:1px;
    background:#e5e5e5;
}

.login-divider span{
    margin:0 15px;
    color:#888;
    font-size:14px;
}

.register-text{
    text-align:center;
    color:#666;
    margin:0;
}

.register-text a{
    color:#8AA08B;
    text-decoration:none;
    font-weight:700;
}

.register-text a:hover{
    text-decoration:underline;
}

/*====================
VERIFICATION CARD
=====================*/

.verification-card{
    max-width:650px;
    margin:80px auto;
    background:#fff;
    border-radius:24px;
    padding:55px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.verification-icon{
    font-size:68px;
    color:#8AA08B;
    margin-bottom:20px;
}

.login-btn-outline{
    display:inline-block;
    margin-top:30px;
    padding:14px 34px;
    border-radius:40px;
    border:2px solid #8AA08B;
    color:#8AA08B;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.login-btn-outline:hover{
    background:#8AA08B;
    color:#fff;
}

/*=========================================
TABLET
=========================================*/

@media (max-width:991px){

    .login-section{
        padding:50px 0;
        min-height:auto;
    }

    .login-wrapper{
        display:block;
    }

    /* Hide promotional content */
    .login-content{
        display:none;
    }

    .login-card{
        width:100%;
        max-width:500px;
        margin:0 auto;
        padding:40px 30px;
    }

    .login-header{
        text-align:center;
        margin-bottom:30px;
    }

    .login-header h3{
        font-size:32px;
    }

    .login-header p{
        font-size:15px;
    }

}

/*=========================================
MOBILE
=========================================*/

@media (max-width:576px){

    .login-section{
        padding:35px 0;
        background:#fafafa;
    }

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    .login-card{
        padding:28px 20px;
        border-radius:18px;
        box-shadow:0 10px 30px rgba(0,0,0,.06);
    }

    .checkout-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }

    .login-header{
        margin-bottom:25px;
    }

    .login-header h3{
        font-size:28px;
    }

    .login-header p{
        font-size:14px;
    }

    .login-card label{
        font-size:13px;
    }

    .modern-input{
        height:52px;
        border-radius:12px;
        font-size:14px;
        padding:0 16px;
    }

    .login-links{
        margin:18px 0 24px;
        text-align:right;
    }

    .login-links a{
        font-size:14px;
    }

    .login-btn{
        height:52px;
        font-size:15px;
    }

    .login-divider{
        margin:24px 0;
    }

    .register-text{
        font-size:14px;
    }

}







/*=========================================
FORGOT PASSWORD MOBILE
=========================================*/

@media (max-width:991px){

    .login-wrapper{
        grid-template-columns:1fr;
        gap:0;
    }

    .login-content{
        display:none;
    }

    .login-card{
        max-width:550px;
        margin:0 auto;
    }

}

@media (max-width:576px){

    .login-section{
        padding:40px 0;
        min-height:auto;
    }

    .login-card{
        padding:28px 20px;
        border-radius:18px;
        box-shadow:0 10px 30px rgba(0,0,0,.05);
    }

    .login-header{
        text-align:center;
        margin-bottom:28px;
    }

    .login-header h3{
        font-size:28px;
    }

    .login-header p{
        font-size:15px;
        line-height:1.7;
    }

    .modern-input{
        height:56px;
        font-size:15px;
    }

    .login-btn{
        height:56px;
        font-size:16px;
    }

    .login-links{
        text-align:center;
    }

}







/*=========================================
REGISTER PAGE
=========================================*/

.login-card .form-row{
    margin-left:-8px;
    margin-right:-8px;
}

.login-card .form-group{
    margin-bottom:20px;
}

.login-card .col-md-6{
    padding-left:8px;
    padding-right:8px;
}

.login-card label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}

.login-card input{
    width:100%;
    height:58px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    padding:0 18px;
    background:#fff;
    font-size:15px;
    transition:all .3s ease;
}

.login-card input::placeholder{
    color:#b0b0b0;
}

.login-card input:focus{
    border-color:#8AA08B;
    box-shadow:0 0 0 4px rgba(138,160,139,.12);
    outline:none;
}

.form-errors{
    color:#dc3545;
    font-size:14px;
    margin-bottom:20px;
}

.form-errors ul{
    margin:0;
    padding-left:18px;
}

/*=========================================
TABLET
=========================================*/

@media (max-width:991px){

    .login-wrapper{
        display:block;
    }

    /* Hide promotional section */
    .login-content{
        display:none;
    }

    .login-card{
        width:100%;
        max-width:520px;
        margin:0 auto;
        padding:35px 25px;
        border-radius:20px;
    }

    .login-header{
        text-align:center;
        margin-bottom:28px;
    }

    .login-header h3{
        font-size:30px;
        margin-bottom:10px;
    }

    .login-header p{
        font-size:15px;
        color:#666;
    }

    .login-card .form-row{
        display:block;
        margin:0;
    }

    .login-card .col-md-6{
        width:100%;
        max-width:100%;
        flex:0 0 100%;
        padding:0;
    }

    .login-card .form-group{
        margin-bottom:18px;
    }

    .login-card input{
        height:54px;
        font-size:15px;
    }

    .login-btn{
        width:100%;
        height:56px;
        font-size:16px;
        margin-top:10px;
    }

    .login-divider{
        margin:25px 0;
    }

    .register-text{
        text-align:center;
    }

}

/*=========================================
MOBILE
=========================================*/

@media (max-width:576px){

    .login-section{
        padding:35px 0;
    }

    .container{
        padding-left:15px;
        padding-right:15px;
    }

    .login-card{
        padding:28px 18px;
        border-radius:18px;
    }

    .login-header h3{
        font-size:26px;
    }

    .login-header p{
        font-size:14px;
    }

    .login-card label{
        font-size:13px;
    }

    .login-card input{
        height:52px;
        padding:0 16px;
        font-size:14px;
        border-radius:12px;
    }

    .login-btn{
        height:52px;
        font-size:15px;
    }

    .register-text{
        font-size:14px;
    }

    .checkout-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }

}






/*=========================================
Dashboard
=========================================*/

.dashboard-card{

background:#fff;
padding:40px;
border-radius:24px;
box-shadow:0 15px 45px rgba(0,0,0,.05);

}

.dashboard-header{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
padding-bottom:30px;
border-bottom:1px solid #ededed;

}

.dashboard-header h2{

font-size:38px;
font-weight:700;
margin:12px 0;

}

.dashboard-header p{

color:#777;
margin:0;

}

.dashboard-avatar{

width:95px;
height:95px;
border-radius:50%;
object-fit:cover;
border:4px solid #edf3ee;

}

/* Stats */

.dashboard-stats{

margin-bottom:35px;

}

.dashboard-stat{

background:#fafafa;
border:1px solid #ececec;
border-radius:18px;
padding:35px;
text-align:center;
transition:.3s;

}

.dashboard-stat:hover{

transform:translateY(-6px);

}

.dashboard-stat i{

font-size:32px;
color:#8AA08B;
margin-bottom:15px;

}

.dashboard-stat h3{

font-size:34px;
font-weight:700;
margin-bottom:10px;

}

.dashboard-stat p{

color:#777;
margin-bottom:15px;

}

.dashboard-stat a{

text-decoration:none;
font-weight:600;
color:#8AA08B;

}

/* Profile */

.profile-box{

margin-top:35px;
background:#fafafa;
padding:35px;
border-radius:20px;

}

.profile-top{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;

}

.profile-top h4{

font-size:28px;
margin-bottom:8px;

}

.profile-top p{

color:#777;
margin:0;

}

.profile-btn{

padding:12px 28px;
border-radius:50px;
background:#8AA08B;
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.profile-btn:hover{

background:#6f886f;
color:#fff;

}

.profile-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;

}

.profile-grid label{

display:block;
font-size:12px;
text-transform:uppercase;
letter-spacing:1px;
color:#999;
margin-bottom:6px;

}

.profile-grid strong{

font-size:17px;
color:#222;

}

/* Quick Actions */

.dashboard-actions{

margin-top:35px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;

}

.action-card{

background:#fafafa;
border:1px solid #ececec;
padding:24px;
border-radius:18px;
text-align:center;
text-decoration:none;
transition:.3s;

}

.action-card:hover{

background:#edf3ee;
transform:translateY(-5px);

}

.action-card i{

display:block;
font-size:28px;
margin-bottom:12px;
color:#8AA08B;

}

.action-card span{

font-weight:600;
color:#333;

}

.logout i{

color:#dc3545;

}

/* Mobile */

@media(max-width:991px){

.dashboard-header{

flex-direction:column-reverse;
text-align:center;
gap:25px;

}

.profile-top{

flex-direction:column;
align-items:flex-start;
gap:20px;

}

.profile-grid{

grid-template-columns:1fr;

}

.dashboard-actions{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.dashboard-card{

padding:25px;

}

.dashboard-header h2{

font-size:30px;

}

.dashboard-avatar{

width:80px;
height:80px;

}

.dashboard-stat{

margin-bottom:20px;

}

.profile-box{

padding:25px;

}

}







/*=========================================
Dashboard Sidebar
=========================================*/

.dashboard-sidebar{

    margin-bottom:30px;

}

.sidebar-card{

    background:#fff;
    padding:18px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.sidebar-card h5{

    padding:8px 18px 18px;
    margin:0;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#999;

}

.sidebar-card a{

    display:flex;
    align-items:center;
    gap:15px;

    padding:16px 18px;
    margin-bottom:8px;

    border-radius:16px;

    text-decoration:none;
    font-weight:600;
    font-size:16px;

    color:#444;

    transition:all .3s ease;

}

.sidebar-card a i{

    width:22px;
    text-align:center;
    font-size:16px;

}

.sidebar-card a:hover{

    background:#edf3ee;
    color:#8AA08B;
    transform:translateX(4px);

}

.sidebar-card a.active{

    background:#8AA08B;
    color:#fff;

}

.sidebar-card a.active i{

    color:#fff;

}

.sidebar-card hr{

    margin:18px 0;
    border:none;
    border-top:1px solid #ececec;

}

.logout-link{

    color:#dc3545 !important;

}

.logout-link:hover{

    background:#fdeeee !important;
    color:#dc3545 !important;

}

/*=========================================
Tablet & Mobile
=========================================*/

@media (max-width:991px){

    /* Hide the sidebar completely */

    .dashboard-sidebar{

        display:none;

    }

    /* Make dashboard content full width */

    .dashboard-section main{

        flex:0 0 100%;
        max-width:100%;

    }

}
