.lost-password-form,
.reset-password-form {
    max-width: 400px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lost-password-form label,
.reset-password-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 600;
}

.lost-password-form .input,
.reset-password-form .input {
    width: 100%;
    padding: 8px;
    margin-bottom: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.lost-password-form .button,
.reset-password-form .button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.lost-password-form .button:hover,
.reset-password-form .button:hover {
    background-color: #005177;
}

.message {
    padding: 10px;
    margin-bottom: 1em;
    border-radius: 4px;
}

.message.success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.message.error {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

.login-link {
    text-align: center;
    margin-top: 1em;
}

.login-link a {
    color: #0073aa;
    text-decoration: none;
}

.login-link a:hover {
    color: #005177;
    text-decoration: underline;
}

#pass-strength-result {
    margin-top: 0.5em;
    padding: 8px;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.description.indicator-hint {
    font-size: 0.9em;
    color: #666;
    margin: 0.5em 0 1em;
} 