/* Form Wrapper */
#vpp-registration-form,
#vpp-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: auto;
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif !important;
    color: white;
    padding: 40px 20px 80px;
}

/* Error Message */
.error-message {
    background: #9D2235;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    border: 1px solid white;
}

/* Input Fields */
#vpp-registration-form input,
#vpp-login-form input {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 1rem;
}

/* Submit Button */
#vpp-registration-form button,
#vpp-login-form button {
    background-color: #9D2235;
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

#vpp-registration-form button:hover,
#vpp-login-form button:hover {
    background-color: #7B1B29;
}

/* Password Hint and Feedback */
#password-hint,
#password-feedback {
    font-size: 12px;
}

#password-feedback {
    margin-top: 0.5rem;
}
