/* Şifremi Unuttum Sayfası Stilleri */
.forgot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-color);
    padding: 20px;
    background-image: url('../images/login-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.forgot-form {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 460px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.forgot-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.forgot-header {
    text-align: center;
    margin-bottom: 2rem;
}

.forgot-header img {
    width: 220px;
    margin-bottom: 1rem;
}

.forgot-header h2 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.forgot-header p {
    color: var(--medium-color);
    font-size: 0.95rem;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--medium-color);
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.alert-success {
    background-color: rgba(105, 197, 160, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(105, 197, 160, 0.2);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .forgot-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .forgot-form {
        padding: 1.5rem;
    }
    
    .forgot-header img {
        width: 180px;
    }
    
    .forgot-header h2 {
        font-size: 1.3rem;
    }
}