/**
 * WordPress Create Account Link Styles
 */
.create-account-button-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    clear: both;
}

.create-account-button {
    display: inline-block;
    background-color: #2271b1;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 15px auto;
}

.create-account-button:hover,
.create-account-button:active,
.create-account-button:focus {
    background-color: #135e96;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Ensure the button stands out on any background */
body .create-account-button {
    color: #fff !important;
    text-decoration: none !important;
}

/* Ensure proper spacing when placed after other elements */
.privacy-policy-link + .create-account-button-container,
a[href*='privacy-policy'] + .create-account-button-container {
    margin-top: 25px;
}
