/* Sayfa düzeni */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Giriş formu container */
.login-container {
    display: flex;
    flex-direction: column; /* Elemanları dikey hizala */
    align-items: center;
    gap: 30px; /* Her bir alan arasında 30px boşluk */
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Logo stil */
.logo {
    width: 150px;
    height: 150px;
}

/* Form stil */
.login-form {
    display: flex;
    flex-direction: column; /* Form elemanlarını alt alta hizala */
    align-items: center;
    width: 100%;
}

/* Input alanları için stil */
input[type="text"], input[type="password"] {
    padding: 15px;
    width: 300px;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Giriş yap butonu */
.login-button {
    background-color: #007BFF; /* Mavi renk */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 300px; /* Buton genişliği */
    text-align: center;
}

/* Giriş yap butonu hover durumu */
.login-button:hover {
    background-color: #0056b3; /* Daha koyu bir mavi renk */
}
