/* Genel Sayfa ve Temel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #000000, #8b0000);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

/* Logo Stil Ayarları */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo {
    width: 150px;
    height: auto;
}

/* Form Container */
.form-container {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ff4500;
    margin-bottom: 10px;
}

.form-header p {
    color: #ccc;
    font-size: 16px;
}

/* Adım Başlıkları */
label {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

input[type="text"],
select,
input[type="file"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 2px solid #333;
    background-color: #222;
    color: #fff;
    font-size: 14px;
}

/* Butonlar */
button {
    background-color: #ff4500;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e03e00;
}

/* Dinamik Hata Mesajları */
#errorMessages {
    color: #ff4500;
    font-size: 14px;
    margin-top: 20px;
}
