/*==============================
CUSTOMER REGISTER
==============================*/

.customer-register-section{
    padding:70px 15px;
    background:#f5f7fb;
    min-height:70vh;
}

.register-container{
    max-width:550px;
    margin:0 auto;
}

.register-box{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #ececec;
}

.logo-box{
    text-align:center;
    margin-bottom:35px;
}

.logo-box h2{
    font-size:32px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.logo-box p{
    color:#777;
    font-size:15px;
    line-height:24px;
}

/*==============================
ALERT
==============================*/

.alert{
    padding:15px;
    border-radius:8px;
    margin-bottom:25px;
    font-size:15px;
}

.success{
    background:#d1fae5;
    color:#065f46;
    border:1px solid #10b981;
}

.error{
    background:#fee2e2;
    color:#991b1b;
    border:1px solid #ef4444;
}

/*==============================
FORM
==============================*/

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.input-box{
    position:relative;
}

.input-box i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#999;
}

.input-box input{
    width:100%;
    height:56px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:0 50px;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.input-box input:focus{
    border-color:#0d6efd;
    outline:none;
    box-shadow:0 0 0 4px rgba(13,110,253,.12);
}

.togglePassword{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#777;
}

/*==============================
BUTTON
==============================*/

.register-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:10px;
    background:#0d6efd;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.register-btn:hover{
    background:#0b5ed7;
    transform:translateY(-2px);
}

/*==============================
BOTTOM
==============================*/

.bottom-text{
    text-align:center;
    margin-top:25px;
    font-size:15px;
    color:#555;
}

.bottom-text a{
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
}

.bottom-text a:hover{
    text-decoration:underline;
}

/*==============================
TABLET
==============================*/

@media(max-width:991px){

.register-box{

padding:35px;

}

.logo-box h2{

font-size:28px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px){

.customer-register-section{

padding:40px 15px;

}

.register-box{

padding:25px;

border-radius:14px;

}

.logo-box{

margin-bottom:25px;

}

.logo-box h2{

font-size:24px;

}

.logo-box p{

font-size:14px;

}

.input-box input{

height:52px;

font-size:14px;

}

.register-btn{

height:52px;

font-size:16px;

}

}

/*==============================
SMALL MOBILE
==============================*/

@media(max-width:480px){

.register-box{

padding:20px;

}

.logo-box h2{

font-size:22px;

}

.form-group{

margin-bottom:18px;

}

.input-box input{

padding-left:45px;

padding-right:45px;

}

}