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

.password-reset-page .error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

.password-reset-page .success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
    border: 1px solid #c3e6cb;
}

.password-reset-page form {
    margin-bottom: 2em;
}

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

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

.password-reset-page .password-field {
    position: relative;
    margin-bottom: 1em;
}

.password-reset-page .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #666;
}

.password-reset-page .toggle-password:hover {
    color: #333;
}

.password-reset-page .password-requirements {
    margin-top: 1em;
    padding: 1em;
    background: #f8f9fa;
    border-radius: 4px;
}

.password-reset-page .password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0.5em 0 0;
}

.password-reset-page .password-requirements li {
    margin-bottom: 0.5em;
    padding-left: 1.5em;
    position: relative;
    color: #666;
}

.password-reset-page .password-requirements li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.password-reset-page .password-requirements li.met {
    color: #28a745;
}

.password-reset-page .password-requirements li.met::before {
    content: "✓";
    color: #28a745;
}

.password-reset-page .or-separator {
    text-align: center;
    margin: 1em 0;
    position: relative;
}

.password-reset-page .or-separator::before,
.password-reset-page .or-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.password-reset-page .or-separator::before {
    left: 0;
}

.password-reset-page .or-separator::after {
    right: 0;
}

.password-reset-page .description {
    font-size: 0.875em;
    color: #666;
    margin-top: 0.25em;
}

.password-reset-page .submit {
    margin-top: 2em;
}

.password-reset-page .button-primary {
    width: 100%;
    padding: 0.75em;
    font-size: 1em;
    font-weight: 600;
}

.password-reset-page .login-link {
    text-align: center;
    margin-top: 2em;
}

.password-reset-page .login-link a {
    color: #007bff;
    text-decoration: none;
}

.password-reset-page .login-link a:hover {
    text-decoration: underline;
} 