body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Giriş kutusu stili */
.login-container, .welcome-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px; /* Padding artırıldı */
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Başlık stili */
h1 {
    text-align: center;
    color: #333;
    font-size: 24px; /* Font boyutu artırıldı */
    margin-bottom: 20px; /* Alt boşluk eklendi */
}

/* Giriş alanı gruplama stili */
.input-group {
    margin-bottom: 20px; /* Aralarda daha fazla boşluk */
}

/* Etiket stili */
label {
    display: block;
    margin-bottom: 8px; /* Etiket altındaki boşluk */
    color: #555;
    font-weight: bold; /* Kalın yapıldı */
}

/* Giriş alanı stili */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px; /* İç boşluk artırıldı */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px; /* Font boyutu */
    transition: border-color 0.3s; /* Transition eklendi */
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #5cb85c; /* Seçili olduğunda border rengi değişti */
    outline: none; /* Tarayıcı odaklamak için varsayılan çerçeveyi kaldırır. */
}

/* Buton stili */
button {
    width: 100%;
    padding: 12px; /* İç boşluk artırıldı */
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s; /* Buton üzerinden geçişte renk değişimi */
}

button:hover {
    background-color: #4cae4c; /* Üzerine gelindiğinde rengi değişti */
}

/* Paragraf ve bağlantı stili */
p {
    text-align: center;
}

a {
    color: #5cb85c;
    text-decoration: none;
    font-weight: bold; /* Kalın bağlantılar */
}

a:hover {
    text-decoration: underline;
}

