/*==================================================
LOGIN / REGISTER PAGE
==================================================*/

.custom-account-page{
    padding:80px 20px;
    background:#f5f5f5;
}

.custom-account-wrapper{
    max-width:520px;
    margin:0 auto;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    overflow:hidden;
}

/*==========================
Tabs
==========================*/

.tab-nav{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
}

.tab-nav li{
    width:50%;
    text-align:center;
    padding:18px;
    cursor:pointer;
    background:#eeeeee;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.tab-nav li.active{
    background:#b59b57;
    color:#fff;
}

.tab-content{
    display:none;
    padding:35px;
}

.tab-content.active{
    display:block;
}

/*==========================
Forms
==========================*/

.woocommerce-form label{
    display:block;
    font-size:14px;
    margin-bottom:8px;
    font-weight:600;
}

.woocommerce-form input[type=text],
.woocommerce-form input[type=email],
.woocommerce-form input[type=password],
.woocommerce-form input[type=tel],
.woocommerce-form select{

    width:100%;
    height:48px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:5px;
    outline:none;
    font-size:15px;
    transition:.3s;
    box-sizing:border-box;

}

.woocommerce-form input:focus,
.woocommerce-form select:focus{

    border-color:#b59b57;

}

.form-row{

    margin-bottom:18px;

}

/*==========================
Phone Field
==========================*/

.phone-wrapper{

    display:flex;
    gap:10px;

}

.phone-wrapper select{

    width:120px;
    flex:0 0 120px;

}

.phone-wrapper input{

    flex:1;

}

/*==========================
Button
==========================*/

.woocommerce-button{

    width:100%;
    height:50px;
    background:#b59b57 !important;
    color:#fff !important;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;

}

.woocommerce-button:hover{

    background:#333 !important;

}

/*==========================
Remember Me
==========================*/

.woocommerce-form__label{

    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;

}

.woocommerce-form__input-checkbox{

    width:auto !important;
    height:auto !important;

}

/*==========================
Lost Password
==========================*/

.lost_password{

    text-align:center;
    margin-top:20px;

}

.lost_password a{

    color:#000;
    text-decoration:none;

}

.lost_password a:hover{

    text-decoration:underline;

}

/*==========================
WooCommerce Notices
==========================*/

.woocommerce-error,
.woocommerce-message,
.woocommerce-info{

    margin-bottom:25px;
    border-radius:5px;

}

/*==========================
Responsive
==========================*/

@media(max-width:768px){

    .custom-account-page{

        padding:40px 15px;

    }

    .tab-content{

        padding:25px;

    }

    .phone-wrapper{

        flex-direction:column;

    }

    .phone-wrapper select{

        width:100%;
        flex:100%;

    }

}

.error{
    border:1px solid #ff0000 !important;
}

.error-message{
    display:block;
    color:#ff0000;
    font-size:13px;
    margin-top:5px;
}