/* ==========================================================================
   TERFIUI v5 — Kurumsal Yönetici Giriş Sayfası (assets/css/pages/kurumsal_login.css)
   ========================================================================== */

/* Kompakt Kurumsal Giriş Hero Kartı (Kompakt İnce Görünüm) */
.gd-krmlog-hero-compact {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0 !important;
}

.gd-krmlog-hero-compact .gd-page-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gd-krmlog-hero-compact .gd-page-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.gd-krmlog-hero-compact .gd-page-subtitle {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Auth Container Grid */
.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    align-items: start;
}

.auth-form-area,
.auth-info {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-sizing: border-box;
}

.auth-form-title,
.auth-info-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.auth-form-subtitle,
.auth-info-subtitle {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.4;
}

.auth-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.auth-label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.auth-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

.auth-input:focus {
    border-color: #2563eb;
    outline: none;
}

.btn-primary-auth {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.15s;
}

.btn-primary-auth:hover {
    background: #1d4ed8;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.auth-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.auth-badge {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.auth-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #475569;
}

.auth-footnote {
    font-size: 12.5px;
    color: #64748b;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 991px) {
    .auth-wrapper {
        grid-template-columns: 1fr;
    }
}
