.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
    margin: 40px 0;
}

.login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.login-title {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.login-error {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #fcc;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

.form-actions {
    margin-bottom: 25px;
}

.login-button {
    width: 100%;
    background: #0073aa;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-button:hover {
    background: #005177;
}

.login-links {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.login-links a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

.login-links a:hover {
    color: #005177;
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
    color: #ccc;
}

.login-help {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.login-help p {
    margin: 5px 0;
}

.login-help a {
    color: #0073aa;
    text-decoration: none;
}

.login-help a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 24px;
    }
}

/* Registration Page Styles */
.register-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
    margin: 40px 0;
}

.register-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

.register-title {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.register-error {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #fcc;
    text-align: center;
}

.register-success {
    background: #efe;
    color: #3c3;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #cfc;
    text-align: center;
}

.form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.register-button {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.register-button:hover {
    background: #218838;
}

.register-links {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.register-links a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

.register-links a:hover {
    color: #005177;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .register-card {
        padding: 30px 20px;
    }
    
    .register-title {
        font-size: 24px;
    }
}

/* Ensure footer spans full width */
.login-container,
.register-container {
    width: 100%;
    max-width: none;
}

/* Override theme content wrapper constraints */
.content-wrap,
.entry-content-wrap,
.entry-content {
    max-width: none !important;
    width: 100% !important;
}

/* Ensure main content area doesn't constrain footer */
.site-main,
#main {
    max-width: none !important;
    width: 100% !important;
}

/* Override any theme constraints */
body.page-template-login,
body.page-template-register {
    width: 100% !important;
    max-width: none !important;
}

/* Force footer to full width */
.site-footer,
#colophon {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    position: relative;
}

/* Password Reset Page Styles */
.reset-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 20px;
    margin: 40px 0;
}

.reset-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 450px;
}

.reset-title {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.reset-instructions {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.reset-error {
    background: #fee;
    color: #c33;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #fcc;
    text-align: center;
}

.reset-success {
    background: #efe;
    color: #3c3;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #cfc;
    text-align: center;
}

.reset-button {
    width: 100%;
    background: #dc3545;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.reset-button:hover {
    background: #c82333;
}

.reset-links {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.reset-links a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

.reset-links a:hover {
    color: #005177;
    text-decoration: underline;
}

.back-to-login {
    display: inline-block;
    margin-top: 15px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .reset-card {
        padding: 30px 20px;
    }
    
    .reset-title {
        font-size: 24px;
    }
}
