/* Password Reset Pages */
body {
    background-color: #f5f6f8;
}

.reset-container {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.reset-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    max-width: 460px;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
}

.reset-brand {
    margin-bottom: 1.5rem;
}

.reset-brand img {
    height: 50px;
    margin-bottom: 0.5rem;
}

.reset-brand h5 {
    color: #800020;
    font-weight: 600;
    margin: 0;
}

.reset-icon {
    color: #04552C;
    margin-bottom: 1rem;
}

.reset-title {
    color: #04552C;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reset-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.reset-card .form-control {
    height: 48px;
    border-radius: 8px;
    font-size: 1rem;
}

.reset-card .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(4, 85, 44, 0.25);
    border-color: #04552C;
}

.reset-card .btn-primary {
    background-color: #04552C;
    border-color: #04552C;
    height: 48px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
}

.reset-card .btn-primary:hover {
    background-color: #033d20;
    border-color: #033d20;
}

.reset-card .btn-outline-secondary {
    height: 48px;
    font-size: 1rem;
    border-radius: 8px;
}

.reset-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.reset-footer a {
    color: #04552C;
    text-decoration: none;
    font-weight: 500;
}

.reset-footer a:hover {
    text-decoration: underline;
}

.password-requirements {
    text-align: left;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.password-requirements li {
    margin-bottom: 0.25rem;
}

.password-toggle {
    position: relative;
}

.password-toggle .toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
}

.password-toggle .toggle-btn:hover {
    color: #04552C;
}

.success-icon {
    color: #198754;
}

@media (max-width: 576px) {
    .reset-card {
        padding: 1.5rem 1.25rem;
    }
}
