/* ===== 2C Handmade Login Page ===== */

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

.login-header h1 {
    font-size: 32px;
    color: #b76e79;
    font-weight: 600;
    margin-bottom: 15px;
}

.login-header p {
    color: #777;
    font-size: 16px;
}


/* Khung đăng nhập + đăng ký */

#customer_login {
    display: flex;
    gap: 35px;
}

#customer_login .u-column1,
#customer_login .u-column2 {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* Tiêu đề */

#customer_login h2 {
    text-align:center;
    color:#b76e79;
}


/* Ô nhập */

#customer_login input {
    border-radius:10px;
    padding:14px;
}


/* Nút */

#customer_login button {
    width:100%;
    border-radius:10px;
    background:#b76e79;
    color:white;
    padding:14px;
}

#customer_login button:hover {
    background:#985965;
}


/* Mobile */

@media(max-width:768px){

    #customer_login{
        display:block;
    }

    #customer_login .u-column1,
    #customer_login .u-column2{
        margin-bottom:25px;
    }

}