body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #fde2c1, #fdf8f4, #ffe6d8); /* Alacalı arka plan */
}

/* Login kutusu */
.login-container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #fde2c1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

h1 {
    color: #d38b5d;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: bold;
}

/* Hata mesajı */
.error-message {
    color: #a05a4c;
    background-color: #fde2c1;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9em;
    width: 100%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Form elemanları */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

form label {
    text-align: left;
    font-weight: bold;
    color: #d38b5d;
    font-size: 1em;
}

form input {
    width: 100%;
    padding: 12px 15px; /* Sol ve sağ padding eklendi */
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #fdf8f4;
    font-size: 1em;
    box-sizing: border-box; /* Kutunun genişliği içerideki padding’i de kapsar */
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus {
    border-color: #d38b5d;
    box-shadow: 0 0 8px rgba(211, 139, 93, 0.3);
    outline: none;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #d38b5d;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

form button:hover {
    background-color: #a05a4c;
    transform: scale(1.03);
}
