/**
 * Auth0 WordPress Integration Styles
 */

/* Auth0 Login Button */
.auth0-login-button {
    display: inline-block;
    background-color: #eb5424;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth0-login-button:hover {
    background-color: #ca3f12;
    color: #ffffff;
}

/* WooCommerce Login Form Customization */
.auth0-wc-login-form {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f8f8f8;
}

.auth0-wc-login-form h2 {
    margin-top: 0;
}

.auth0-wc-login-form .button {
    display: inline-block;
    background-color: #eb5424;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth0-wc-login-form .button:hover {
    background-color: #ca3f12;
    color: #ffffff;
}

/* Email verification styling */
.auth0-email-verification-section,
.auth0-email-verification-dashboard,
.auth0-email-verification-page {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.auth0-email-verification-form {
    margin: 15px 0;
}

.auth0-email-verification-form input[type="text"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    margin-bottom: 10px;
}

.auth0-verification-message {
    margin-top: 10px;
}

/* Add a badge to the menu item */
.woocommerce-MyAccount-navigation-link--verify-email a::after {
    content: "!";
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background-color: #f44336;
    color: white;
    border-radius: 50%;
    margin-left: 5px;
    font-size: 12px;
    font-weight: bold;
}