.menplayphx-registration-form,
.menplayphx-login-form,
.menplayphx-forgot-password-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Login status based visibility */
body.user-logged-in .show-when-logged-out,
body.user-logged-in .menu-item.show-when-logged-out,
body.user-logged-in .show-when-logged-out.menu-item {
    display: none !important;
}

body.user-logged-out .show-when-logged-in,
body.user-logged-out .menu-item.show-when-logged-in,
body.user-logged-out .show-when-logged-in.menu-item {
    display: none !important;
}

/* Example usage in your theme:
   <a href="/register/" class="show-when-logged-out">Register</a>
   <a href="/account/" class="show-when-logged-in">My Account</a>
*/

.menplayphx-registration-form h2,
.menplayphx-login-form h2,
.menplayphx-forgot-password-form h2 {
    margin: 0 0 20px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.button:hover {
    background: #005177;
}

.form-links {
    margin-top: 20px;
    text-align: center;
}

.form-links p {
    margin: 10px 0;
}

.form-links a {
    color: #0073aa;
    text-decoration: none;
}

.form-links a:hover {
    text-decoration: underline;
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
}

/* WordPress login page customization */
.login h1 a {
    background-image: url('https://menplayphx.com/wp-content/uploads/2025/05/cropped-menPlayPHX.jpg') !important;
    background-size: contain;
    background-position: center;
    width: 100% !important;
    height: 100px !important;
    margin-bottom: 20px !important;
}

.login #nav,
.login #backtoblog {
    display: none !important;
} 