/**
 * PELSA - Forgot Password Page Styles
 * Şifre sıfırlama sayfasına özel stileler
 */

.forgot-container {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.forgot-header {
    text-align: center;
    margin-bottom: 30px;
}

.forgot-header h1 {
    font-size: 24px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 8px;
}

.forgot-header p {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    padding: 10px 20px;
    background-color: #E20110;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    margin-bottom: 12px;
}

.submit-button:hover {
    background-color: #b30c08;
    box-shadow: 0 2px 8px rgba(226, 1, 16, 0.3);
}

.submit-button:active {
    transform: translateY(1px);
}

.back-link {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #dadce0;
    font-size: 13px;
}

.back-link a {
    color: #E20110;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link a:hover {
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 480px) {
    .forgot-container {
        padding: 30px 20px;
    }

    .forgot-header h1 {
        font-size: 20px;
    }

    .logo-section img {
        height: 40px;
    }
}
