/* ============================================================
   IT Helpdesk - Auth Sayfaları Stilleri
   ============================================================ */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 30%, #4338CA 60%, #6366F1 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(14,165,233,0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, -2%) rotate(1deg); }
    50% { transform: translate(-1%, 1%) rotate(-1deg); }
    75% { transform: translate(1%, -1%) rotate(0.5deg); }
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 48px 40px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo img {
    height: 50px;
    margin-bottom: 12px;
}

.auth-logo h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1e1b4b;
    letter-spacing: -0.5px;
    margin: 0;
}

.auth-logo p {
    color: #6b7280;
    font-size: 14px;
    margin-top: 6px;
}

.auth-card .form-control {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    border: 1.5px solid #e5e7eb;
    background: #f9fafb;
}

.auth-card .form-control:focus {
    background: white;
    border-color: #4F46E5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.auth-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.auth-card .input-group-text {
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #9ca3af;
}

.auth-card .input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.auth-card .btn-primary {
    width: 100%;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border: none;
    margin-top: 8px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.auth-card .btn-primary:hover {
    background: linear-gradient(135deg, #4338CA, #6D28D9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

.auth-card .form-check {
    margin-top: 4px;
}

.auth-card .form-check-label {
    font-size: 13px;
    color: #6b7280;
}

.auth-card .auth-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.auth-card .auth-links a {
    color: #4F46E5;
    font-weight: 600;
    font-size: 13.5px;
}

.auth-card .auth-links a:hover {
    color: #4338CA;
    text-decoration: underline;
}

.auth-card .forgot-link {
    font-size: 13px;
    color: #4F46E5;
    font-weight: 500;
}

.auth-card .forgot-link:hover {
    color: #4338CA;
}

/* Decorative elements */
.auth-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.auth-decoration:nth-child(1) {
    width: 300px;
    height: 300px;
    background: #7C3AED;
    top: -100px;
    right: -100px;
}

.auth-decoration:nth-child(2) {
    width: 200px;
    height: 200px;
    background: #0EA5E9;
    bottom: -50px;
    left: -50px;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .auth-logo h1 {
        font-size: 22px;
    }
}
