/* 
   EVOLUTION LOGIN STYLE
   Futuristic, Technical, Premium
*/

:root {
    --evolution-cian: #00f2ff;
    --evolution-dark: #020617;
    --evolution-card: rgba(30, 41, 59, 0.7);
    --evolution-border: rgba(0, 242, 255, 0.2);
}

body.evolution-login {
    background-color: var(--evolution-dark);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.login-container {
    backdrop-filter: blur(10px);
    border: 1px solid var(--evolution-border);
    border-radius: 24px;
    background: var(--evolution-card);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 242, 255, 0.02);
    padding: 3rem;
    position: relative;
    z-index: 10;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--evolution-border), transparent);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

.evolution-input {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.evolution-input:focus {
    border-color: var(--evolution-cian) !important;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1) !important;
    background: rgba(15, 23, 42, 0.8) !important;
}

.btn-evolution {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    border: none;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.8rem;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-evolution:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
    filter: brightness(1.1);
}

.rlp-logo-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rlp-logo-container img {
    max-height: 80px;
    filter: saturate(0.8) brightness(0.9);
    transition: all 0.4s;
}

.rlp-logo-container:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.rlp-logo-container:hover img {
    filter: saturate(1) brightness(1.1);
    transform: scale(1.05);
}

.evolution-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--evolution-cian);
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes pulse-glow {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0.3;
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--evolution-cian) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}