/**
 * LMR Araç Kontrol Sistemi - Login sayfası özel stilleri
 */

body {
    background-image: url('../../assets/images/login_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 40, 34, 0.7) 0%, rgba(34, 19, 12, 0.6) 100%);
    z-index: -1;
}

.login-logo {
    max-width: 150px;
    height: auto;
}

.card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.card-header {
    background-color: #fff;
}

.card-footer {
    background-color: #fff;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
    border-left: none;
}

.input-group:focus-within .input-group-text {
    border-color: #80bdff;
}

.input-group:focus-within .form-control {
    border-color: #80bdff;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #6c757d;
}

.password-toggle:hover {
    color: #0052CC;
}

/* Responsive düzenlemeler */
@media (max-width: 767.98px) {
    .card {
        border-radius: 0.5rem;
        margin: 1rem;
    }
}