.forgot-password-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
}

.forgot-password-form {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 5px rgba(255, 98, 0, 0.2);
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #333;
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--accent-orange);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--accent-orange-hover);
}

.btn-primary:disabled {
    background-color: #ffb080;
    cursor: not-allowed;
}

.alert-success {
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    margin-top: 1rem;
}

.text-danger {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}