/* Login-specific styles */
.login-dashboard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.login-container {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 40px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 94, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-animation-small {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.data-cube {
    position: relative;
    transform-style: preserve-3d;
}

.data-cube.small {
    width: 40px;
    height: 40px;
    animation: rotateCube 12s infinite linear;
}

.data-cube .face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 94, 0, 0.5);
    background: rgba(255, 94, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-cube.small .front { transform: rotateY(0deg) translateZ(20px); }
.data-cube.small .back { transform: rotateY(180deg) translateZ(20px); }
.data-cube.small .right { transform: rotateY(90deg) translateZ(20px); }
.data-cube.small .left { transform: rotateY(-90deg) translateZ(20px); }
.data-cube.small .top { transform: rotateX(90deg) translateZ(20px); }
.data-cube.small .bottom { transform: rotateX(-90deg) translateZ(20px); }

.lightning {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.lightning i {
    color: var(--primary);
    font-size: 16px;
}

@keyframes rotateCube {
    from { transform: rotateX(0) rotateY(0); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.login-header h1 {
    color: var(--light);
    font-size: 2rem;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.login-tabs {
    display: flex;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 5px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.login-form {
    margin-bottom: 30px;
}

.login-features {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.feature i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .login-container {
        padding: 30px 20px;
        margin: 20px;
    }
}