﻿/* Genel Stil Ayarları */
body {
    background-color: #212529;
    color: #fff;
    font-family: 'Lato', sans-serif; /* Lato Fontu Uygulandı */
    margin: 0;
    padding: 0;
}

.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background-color: #343a40;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .login-card h3 {
        color: #ffc107;
        text-align: center;
        margin-bottom: 20px;
        font-size: 24px; /* Başlık font boyutunu netleştirdik */
    }

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .form-group label {
        width: 30%; /* Label genişliğini ayarladık */
        display: flex;
        align-items: center; /* Vertikal hizalamayı ortaladık */
    }

    .form-group input {
        width: 75%; /* Input alanının genişliğini ayarladık */
        padding: 12px; /* Giriş alanlarına iç boşluk ekledik */
        font-size: 16px; /* Font büyüklüğünü netleştirdik */
        background-color: #212529;
        border: 1px solid #343a40;
        color: #fff;
    }

        .form-group input:focus {
            border-color: #ffc107;
            outline: none;
        }

.btn-login {
    width: 100%;
    background-color: #ffc107;
    border: none;
    color: #212529;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-login:hover {
        background-color: #e0a800;
    }

.forgot-password {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

    .forgot-password a {
        color: #6c757d;
        text-decoration: none;
        font-size: 14px; /* Font boyutunu netleştirdik */
    }

        .forgot-password a:hover {
            color: #ffc107;
        }

/* Hata mesajı için stil */
.error-message {
    color: red;
    text-align: center;
    margin-top: 15px;
    font-size: 14px; /* Font boyutunu netleştirdik */
}

/* Genel düzenlemeler */
h3, label, input, button {
    font-family: 'Lato', sans-serif; /* Lato fontunun her öğeye uygulanmasını sağladık */
}
