body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f4f6;
    margin: 0;
}

.card {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 30px;  /* Giriş Yap yazısının altına boşluk ekledim */
}

.input-group {
    margin-bottom: 20px;
}

button {
    border-radius: 5px;
    margin-top: 10px;
    display: block;
    width: 100%;  /* Giriş butonunu ortaladım */
}

button:disabled {
    opacity: 0.5;
}

.input-group-text {
    font-size: 1.2rem; /* İkonun boyutunu input kutusuna göre ayarlar */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Yüksekliği input kutusu ile eşit yapar */
}
