﻿/* Genel Ayarlar ve Font Entegrasyonu */
body.login-body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top right, #f4f7f6 0%, #e9eff1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

/* Giriş Kartı Konteyneri */
.login-container {
    max-width: 960px;
    padding: 15px;
}

.login-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 550px;
    border: none;
}

/* Sol Form Bölümü */
.login-form-section {
    background-color: #ffffff;
}

.company-logo-icon {
    font-size: 2.5rem;
}

.company-title {
    font-weight: 700;
    letter-spacing: 1px;
    color: #003049; /* Koyu Okyanus Mavisi */
}

/* Input Alanları Şekillendirme */
.login-form-section .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
    border-color: #dbe3e6;
    color: #334e5b;
}

    .login-form-section .form-control:focus {
        border-color: #0077b6; /* Okyanus Mavisi Odaklanma */
        box-shadow: 0 0 0 0.25rem rgba(0, 119, 182, 0.15);
    }

.login-form-section .input-group-text {
    border-color: #dbe3e6;
    color: #a0b1b9;
}

/* Buton ve Link Renkleri */
.btn-login {
    /* Tamamen Mavi Tonlarında Dinamik Gradyan Geçişi */
    background: linear-gradient(135deg, #005f73 0%, #0077b6 100%);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background: linear-gradient(135deg, #004b5c 0%, #0096c7 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
    }

.custom-link {
    color: #0077b6; /* Okyanus Mavisi Bağlantı */
    font-weight: 500;
}

    .custom-link:hover {
        color: #003049;
    }

/* Sağ Görsel Alanı Tasarımı */
.login-image-section {
    /* Yeşil tonları kaldırıldı; Derin okyanus mavisinden açık okyanus mavisine yumuşak geçiş sağlandı */
    background: linear-gradient(135deg, rgba(0, 48, 73, 0.95) 0%, rgba(0, 119, 182, 0.85) 100%), url('https://images.unsplash.com/photo-1597481499750-3e6b22637e12?q=80&w=1000') no-repeat center center;
    background-size: cover;
    position: relative;
}

.backdrop-blur {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.spl-mini-text {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Üye Ol / Bayi Başvurusu Linkinin Stil Ayarı */
.login-form-section .custom-link.fw-semibold {
    color: #0077b6;
    transition: color 0.2s ease-in-out;
}

    .login-form-section .custom-link.fw-semibold:hover {
        color: #003049;
        text-decoration: underline !important;
    }
