/* Striker Auth Style System - Glassmorphic Signup & Logins */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
    position: relative;
    z-index: 10;
}

.auth-brand {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #020617;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    box-shadow: 0 0 20px var(--primary-glow);
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.auth-subtitle {
    font-size: 13.5px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
}

.auth-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13.5px;
    color: var(--text-secondary);
}

.auth-input-wrapper {
    position: relative;
}
.auth-input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition-smooth);
}
.auth-input-wrapper .form-control {
    padding-left: 44px;
}
.auth-input-wrapper .form-control:focus + i {
    color: var(--primary);
}

/* Background elements for styling */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}
.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 15%;
    left: 10%;
}
.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: 10%;
    right: 5%;
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated-entrance {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 24px 20px !important;
    }
    .auth-brand {
        margin-bottom: 16px;
    }
    .auth-title {
        font-size: 20px;
    }
}

