﻿
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.admin-login {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.admin-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-4);
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-4xl);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

    .admin-badge::after {
        content: '';
        position: absolute;
        inset: -8px;
        border: 3px solid rgba(236, 72, 153, 0.3);
        border-radius: 50%;
        animation: rotate 3s linear infinite;
    }

@keyframes pulse {

    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(236, 72, 153, 0.6);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.security-badge {
    background: var(--gray-100);
    padding: var(--spacing-3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-top: var(--spacing-4);
}
