/* Container chung */
.az-wrap {
    max-width: 400px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.az-wrap h3 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

/* Input Styles */
.az-wrap input[type="text"],
.az-wrap input[type="email"],
.az-wrap input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Quan trọng để không bị vỡ khung */
    font-size: 14px;
}

.az-wrap input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Button Styles - FIX LỖI CSS */
.az-wrap .btn {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.az-wrap .btn:hover {
    background-color: #005177;
}

.az-wrap .btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Message Box */
.az-wrap .msg {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

/* Link Style */
.az-wrap a {
    color: #0073aa;
    text-decoration: none;
}
.az-wrap a:hover {
    text-decoration: underline;
}

/* WooCommerce OTP Button override */
#az-woo-send-otp {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
}