/**
 * GH Email Login Styles
 */

.gh-email-login-form-container {
    max-width: 400px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.gh-email-login-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.gh-email-login-description {
    margin-bottom: 20px;
    color: #666;
}

.gh-email-login-form {
    display: block;
}

.gh-email-login-field {
    margin-bottom: 15px;
}

.gh-email-login-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.gh-email-login-field input:not([type="checkbox"]) {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.gh-email-login-submit button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
}

.gh-email-login-submit button:hover {
    background-color: #005f8b;
}

.gh-email-login-message-container {
    margin-top: 15px;
}

.gh-email-login-message {
    padding: 10px;
    border-radius: 3px;
    margin-top: 15px;
}

.gh-email-login-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.gh-email-login-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Toggle link between email and password login */
.gh-email-login-toggle {
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.gh-email-login-toggle a {
    color: #0073aa;
    text-decoration: none;
}

.gh-email-login-toggle a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Reset password link */
.gh-email-login-reset-password {
    margin-top: 10px;
    font-size: 0.9em;
}

.gh-email-login-reset-password a {
    color: #0073aa;
    text-decoration: none;
}

.gh-email-login-reset-password a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Checkbox styling */
.gh-email-login-checkbox {
    display: flex;
    align-items: baseline;
}

.gh-email-login-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.gh-email-login-checkbox label {
    display: inline;
    font-weight: normal;
}

a.wp-login-lost-password
{
    display: none;
}