/* Genel Stiller */
body {
    font-family: 'Roboto', sans-serif;
    background-size: cover;
    background-position: center;
}

/* Kart Stilleri */
.login-card {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.login-card .card-body {
    padding: 40px;
}

.login-card .card-title {
    font-weight: 700;
    color: #333;
}

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* Bağlantı Stilleri */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Stiller */
@media (max-width: 576px) {
    .login-card .card-body {
        padding: 20px;
    }
}
