/* Genel Ayarlar */
body {
    background: linear-gradient(135deg, #e0f2f7 0%, #c8e6c9 100%);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Google Font Import (style.css'in en üstüne ekleyin) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Form Konteyneri */
.form-container {
    background: #ffffff;
    padding: 45px 50px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    width: 100%;
    border: 1px solid rgba(220, 220, 220, 0.6);
    overflow: hidden;
}

/* Form Başlığı */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}
.form-header h2 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}
.form-header p {
    color: #6a7c8e;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Kontrolleri (Input, Select, Textarea) */
.form-group {
    margin-bottom: 22px;
}
.form-control {
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    font-size: 1.05rem;
    color: #495057;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}
.form-control::placeholder {
    color: #b0b0b0;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.15);
    background-color: #ffffff;
    outline: none;
}

/* Label'lar */
label {
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    display: block;
    font-size: 1.05rem;
}

/* Gönder Butonu */
.btn-submit {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}
.btn-submit:hover {
    background: linear-gradient(45deg, #0056b3, #003f7f);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.35);
}
.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

/* Alert Mesajları (Başarı/Hata) */
.alert {
    padding: 18px 25px;
    border-radius: 10px;
    font-size: 1.05rem;
    margin-bottom: 30px;
    text-align: center;
    border-width: 1px;
    font-weight: 500;
    line-height: 1.5;
}
.alert-success {
    background-color: #d4edda;
    color: #1a5e24;
    border-color: #a3d9b0;
}
.alert-danger {
    background-color: #f8d7da;
    color: #8c2e36;
    border-color: #f0b9bf;
}

/* Honeypot Field (Gizli Kalacak) */
.honeypot-field {
    display: none !important;
}

.form-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Duyarlı Tasarım (Responsive Design) */

/* Genel Responsive Düzenlemeler */
@media (max-width: 768px) {
    .form-container {
        padding: 35px 30px;
        margin: 15px;
        border-radius: 15px;
    }
    .form-header h2 {
        font-size: 2rem;
    }
    .form-header p {
        font-size: 1rem;
    }
    .btn-submit {
        padding: 12px 25px;
        font-size: 1.05rem;
    }

    .form-header .form-logo {
        width: 180px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 10px;
    }
    .form-container {
        padding: 25px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .form-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .form-header p {
        font-size: 0.95rem;
    }
    .form-group {
        margin-bottom: 18px;
    }
    label {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .form-control {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    .btn-submit {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .form-header .form-logo {
        width: 100px;
        margin-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .form-logo {
        max-width: 80px !important;
        margin-bottom: 10px !important;
        display: block !important;
    }
}

@media (max-width: 320px) {
    .form-logo {
        max-width: 70px !important;
        margin-bottom: 8px !important;
        display: block !important;
    }
}