/* ========================================
   PASSWORD FORGOT PAGE - JOboost Design System V2
   ======================================== */

@import url('login.css');

/* =========================
   FORGOT CONTAINER
   ========================= */
.forgot-container {
    max-width: 480px;
    margin: 0 auto;
}

.forgot-header {
    text-align: center;
    margin-bottom: 2rem;
}

.forgot-header img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
}

.forgot-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.forgot-header p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* =========================
   SUCCESS/ERROR MESSAGES
   ========================= */
.success-message,
.error-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInDown 0.4s ease;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-left: 4px solid var(--success);
    color: var(--success);
}

.error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-left: 4px solid var(--error);
    color: var(--error);
}

.success-message i,
.error-message i {
    font-size: 1.25rem;
}

/* =========================
   FORGOT FOOTER
   ========================= */
.forgot-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.forgot-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.forgot-footer a:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

/* =========================
   FORM STYLES
   ========================= */
.forgot-container form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.forgot-container .form-group {
    margin-bottom: 1.5rem;
}

.forgot-container .form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-900);
    transition: all var(--transition-base);
    outline: none;
}

.forgot-container .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.forgot-container .form-input::placeholder {
    color: var(--gray-400);
}

.forgot-container .error-text {
    display: block;
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* =========================
   SECURITY INFO
   ========================= */
.security-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-left: 4px solid var(--info);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.security-info strong {
    color: var(--info);
}

/* =========================
   CONTENT SECTION
   ========================= */
.content-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.content-section ul {
    list-style: none;
    padding-left: 0;
}

.content-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}
