﻿.forgot-wrapper {
    min-height: 100vh;
    background-color: #F4F5F8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.forgot-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    max-width: 460px;
    width: 100%;
}

.forgot-header {
    text-align: center;
    margin-bottom: 2rem;
}

.forgot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #e8edf5;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.forgot-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A428A;
    margin: 0 0 0.5rem 0;
}

.forgot-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.input-container label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.input-element {
    padding: 0.65rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #111827;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.input-element:focus {
    border-color: #1A428A;
    box-shadow: 0 0 0 3px rgba(26, 66, 138, 0.12);
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #1A428A;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #153472;
}

.validation-message {
    font-size: 0.8rem;
    color: #dc2626;
}
