:root{--page-title-display:none;}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.mp_wrapper.mp_login_form,
.mp_wrapper.mp_login_form * {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.mp_wrapper.mp_login_form {
    max-width: 380px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 56, 94, 0.1);
}

/* Kill the empty spacer divs entirely */
.mp_wrapper.mp_login_form .mp-spacer {
    display: none;
}

.mp-form-row {
    margin-bottom: 1.1rem;
}

.mp-form-label {
    position: relative;
}

.mp-form-label label {
    display: block;
    font-weight: 500;
    color: #00385e;
    font-size: 0.8125rem;
    margin-bottom: 0.3rem;
}

/* Password field — show/hide toggle button removed entirely rather than
   fixed, simpler than dealing with Dashicons just for this one button */
.mp_wrapper.mp_login_form input[type="text"],
.mp_wrapper.mp_login_form input[type="password"] {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
}

button.mp-hide-pw {
    display: none !important;
}

.mp_wrapper.mp_login_form input[type="text"]:focus,
.mp_wrapper.mp_login_form input[type="password"]:focus {
    outline: none;
    border-color: #00385e;
    box-shadow: 0 0 0 3px rgba(0, 56, 94, 0.1);
}

div.mp-hide-pw {
    display: block;
}

/* Remember Me row — no real class in the markup, targeted by position */
.mp_wrapper.mp_login_form > form > div:not(.mp-form-row):not(.submit) {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: #374151;
}

.mp_wrapper.mp_login_form > form > div:not(.mp-form-row):not(.submit) label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 400;
}

/* Submit button */
.mp_wrapper.mp_login_form input#wp-submit {
    width: 100%;
    background: #00385e;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mp_wrapper.mp_login_form input#wp-submit:hover {
    background: #002a47;
}

/* Forgot password link */
.mepr-login-actions {
    text-align: center;
    margin-top: 1rem;
}

.mepr-login-actions a {
    color: #00385e;
    font-size: 0.85rem;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .mp_wrapper.mp_login_form {
        margin: 2rem 1rem;
        padding: 1.75rem;
    }
}/* End custom CSS */