/* Cyberpunk login — scoped to login page only */
body.full-page section.content {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    min-height: 100vh;
}

body.full-page .app-content.content {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 100vh;
    background: #000 !important;
}

body.full-page .wrapper,
body.full-page .content-body,
body.full-page .content {
    min-height: 100vh;
    background: transparent !important;
    overflow: hidden;
}

.cyber-login-page {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 50%, #0a0a1a 0%, #000 70%);
    overflow: hidden;
    z-index: 0;
}

#cyber-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cyber-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 680px;
    z-index: 2;
    pointer-events: none;
}

.cyber-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
                linear-gradient(135deg, rgba(0, 255, 255, 0.35), rgba(255, 0, 255, 0.35)) border-box;
    mask: radial-gradient(transparent 62%, #000 63%);
    -webkit-mask: radial-gradient(transparent 62%, #000 63%);
    animation: cyber-ring-spin 24s linear infinite;
}

.cyber-ring--inner {
    inset: 60px;
    opacity: 0.5;
    animation-duration: 18s;
    animation-direction: reverse;
}

.cyber-ring--glow {
    inset: -20px;
    border: none;
    background: radial-gradient(ellipse at center,
        rgba(0, 255, 255, 0.08) 0%,
        rgba(180, 0, 255, 0.06) 45%,
        transparent 70%);
    mask: none;
    -webkit-mask: none;
    animation: cyber-pulse 4s ease-in-out infinite;
}

@keyframes cyber-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes cyber-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.04); }
}

.cyber-login-box {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 460px;
    padding: 0 24px;
    animation: cyber-fade-up 0.8s ease-out both;
}

@keyframes cyber-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cyber-login-logo {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e8f4ff;
    filter: drop-shadow(0 0 14px rgba(0, 255, 255, 0.35));
}

.cyber-login-logo img {
    vertical-align: middle;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

.cyber-panel {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #00ffff, #7b2fff, #ff00ff);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.25),
        0 0 60px rgba(255, 0, 255, 0.15),
        inset 0 0 30px rgba(0, 255, 255, 0.05);
    animation: cyber-border-glow 3s ease-in-out infinite;
}

@keyframes cyber-border-glow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(0, 255, 255, 0.25),
            0 0 60px rgba(255, 0, 255, 0.15);
    }
    50% {
        box-shadow:
            0 0 45px rgba(0, 255, 255, 0.45),
            0 0 80px rgba(255, 0, 255, 0.3);
    }
}

.cyber-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200% 100%;
    animation: cyber-shimmer 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes cyber-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.cyber-panel-inner {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    padding: 2rem 2rem 1.8rem;
    background: rgba(8, 8, 20, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cyber-welcome {
    text-align: center;
    color: rgba(200, 220, 255, 0.75);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.6rem;
}

.cyber-login-page .form-label-group {
    margin-bottom: 1.25rem;
}

.cyber-login-page .form-control {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(0, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: #e8f4ff !important;
    padding-left: 2.6rem !important;
    height: 46px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.cyber-login-page .form-control::placeholder {
    color: rgba(180, 200, 230, 0.45);
}

.cyber-login-page .form-control:focus {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: rgba(0, 255, 255, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.12), 0 0 20px rgba(0, 255, 255, 0.15) !important;
    color: #fff !important;
}

.cyber-login-page .form-control-position {
    color: rgba(0, 255, 255, 0.7);
    top: 50%;
    transform: translateY(-50%);
}

.cyber-login-page .form-label-group > label {
    color: rgba(160, 200, 255, 0.6);
    padding-left: 2.6rem;
}

.cyber-login-page .form-label-group > input:focus ~ label,
.cyber-login-page .form-label-group > input:not(:placeholder-shown) ~ label {
    color: rgba(0, 255, 255, 0.85);
}

.cyber-login-page .vs-checkbox-con span:last-child {
    color: rgba(200, 220, 255, 0.7);
}

.cyber-login-page .invalid-feedback {
    color: #ff6b9d !important;
}

.cyber-login-page .btn-cyber-login {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(90deg, #00c8ff, #8b3dff, #e040ff);
    background-size: 200% auto;
    box-shadow: 0 4px 24px rgba(0, 200, 255, 0.35);
    transition: background-position 0.4s, transform 0.2s, box-shadow 0.3s;
    animation: cyber-btn-shift 5s ease infinite;
}

@keyframes cyber-btn-shift {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}

.cyber-login-page .btn-cyber-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(0, 200, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.25);
    color: #fff;
}

.cyber-login-page .btn-cyber-login:active {
    transform: translateY(0);
}

.cyber-login-page .checkbox {
    margin-bottom: 0;
}

.cyber-form-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
