/* ================================================
   MKA Panel - Ekstra Auth Stilleri
   ================================================ */

/* Decorative Elements */
.auth-page::after {
    content: '◆';
    position: absolute;
    top: 50px;
    right: 100px;
    font-size: 60px;
    color: rgba(212, 175, 55, 0.15);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Trust Badges */
.auth-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.trust-badge i {
    color: #d4af37;
    font-size: 18px;
}

/* Loading Animation for Submit */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #1e3a5f;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-box {
        padding: 35px 25px;
    }
    
    .auth-box h1 {
        font-size: 26px;
    }
    
    .auth-logo .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}


