/* login.css */

body {
    background-color: #003B71; /* Arka plan rengi */
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.login-card {
    background-color: #ffffff; /* Kart rengi */
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    color: #333;
}

.login-card h1 {
    font-size: 2rem;
    color: #003B71; /* Başlık rengi */
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 0.75rem;
}

.form-control:focus {
    border-color: #003B71;
    box-shadow: 0 0 5px rgba(0, 59, 113, 0.5);
}

.btn-primary {
    background: #003B71;
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #002a51;
}

.alert {
    border-radius: 10px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    color: #fff;
    font-size: 0.9rem;
}
footer strong {
    color: #b7814f; /* Designed by için vurgu rengi */
}
