/* ========================================
LOGIN PAGE
======================================== */

.login-section{
    width:100%;
    padding:60px 20px;
    background:#f5f5f5;
    min-height:calc(100vh - 120px);
}

/* ========================================
CONTAINER
======================================== */

.login-wrapper{
    width:100%;
    background:#fff;
    border-radius:24px;
    padding:50px;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:50px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ========================================
BOX
======================================== */

.login-box{
    flex:1;
}

.login-box h2{
    font-size:32px;
    color:#111;
    margin-bottom:12px;
}

.login-box p{
    color:#666;
    font-size:15px;
    margin-bottom:35px;
    line-height:1.5;
}

/* ========================================
DIVIDER
======================================== */

.divider{
    width:1px;
    min-height:500px;
    background:rgba(0,0,0,0.08);
}

/* ========================================
FORM
======================================== */

form{
    width:100%;
}

/* ========================================
INPUT GROUP
======================================== */

.input-group{
    width:100%;
    margin-bottom:24px;
}

.input-group label{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
    color:#111;
}

/* ========================================
INPUT
======================================== */

.input-group input{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 18px;
    font-size:15px;
    background:#fff;
    transition:0.3s;
}

.input-group input:focus{
    border-color:#f5a000;
    box-shadow:0 0 0 4px rgba(245,160,0,0.15);
}

/* ========================================
PASSWORD
======================================== */

.password-box{
    position:relative;
}

.password-box input{
    padding-right:60px;
}

.toggle-password{
    position:absolute;
    top:50%;
    right:18px;
    transform:translateY(-50%);
    background:none;
    color:#777;
    font-size:18px;
    cursor:pointer;
}

/* ========================================
FORGOT
======================================== */

.forgot-password{
    display:inline-block;
    margin-bottom:25px;
    color:#666;
    font-size:14px;
}

.forgot-password:hover{
    color:#f5a000;
}

/* ========================================
BUTTON
======================================== */

.login-submit{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#f5a000;
    color:#111;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

.login-submit:hover{
    background:#111;
    color:#fff;
}

/* ========================================
MESSAGE
======================================== */

.form-message{
    margin-top:18px;
    font-size:14px;
    font-weight:600;
    color:#e53935;
}

/* ========================================
HEADER BUTTONS
======================================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.header-btn{
    background:none;
    font-size:26px;
    color:#111;
    position:relative;
}

.cart-btn{
    position:relative;
}

.cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:700;
}

/* ========================================
RESPONSIVO
======================================== */

@media(max-width:1000px){

    .login-wrapper{
        flex-direction:column;
        padding:40px 25px;
    }

    .divider{
        width:100%;
        min-height:1px;
    }

}

@media(max-width:600px){

    .login-section{
        padding:30px 15px;
    }

    .login-wrapper{
        border-radius:18px;
        padding:30px 20px;
    }

    .login-box h2{
        font-size:26px;
    }

    .input-group input{
        height:54px;
    }

    .login-submit{
        height:54px;
    }

}