
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Raleway', sans-serif;
    background: #1a1a2e;
    overflow: hidden;
}

#login-view {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
}

.art-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.color-block {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.block-1 {
    width: 400px;
    height: 400px;
    background: #ff6b6b;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.block-2 {
    width: 500px;
    height: 500px;
    background: #4ecdc4;
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.block-3 {
    width: 350px;
    height: 350px;
    background: #ffe66d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.block-4 {
    width: 300px;
    height: 300px;
    background: #a8e6cf;
    top: 20%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.left-sidebar {
    width: 320px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.logo-section {
    text-align: center;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: rotate 5s ease-in-out infinite;
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 5px;
    line-height: 0.9;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.art-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.stat-number {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px;
    z-index: 1;
}

.welcome-section {
    margin-bottom: 60px;
    text-align: center;
}

.welcome-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.highlight {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.welcome-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
}

.login-card-art {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 45px 50px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

#login-view .input-group {
    margin-bottom: 20px;
}

#login-view .input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 18px 20px;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s;
}

#login-view .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

#login-view .input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #4ecdc4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

#login-view button#continueBtn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    border: none;
    border-radius: 15px;
    color: #fff;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-transform: uppercase;
}

#login-view button#continueBtn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

#login-view button#continueBtn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

#login-view .message.error-message {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    color: #ff6b6b;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.card-footer-art {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-icon {
    font-size: 1.2rem;
}

#login-view .glass-container {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: none;
    margin: 0;
}

@media (max-width: 968px) {
    #login-view {
        flex-direction: column;
    }
    
    .left-sidebar {
        width: 100%;
        padding: 30px 20px;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .art-stats {
        flex-direction: row;
        justify-content: space-around;
        margin-top: 20px;
    }
    
    .stat-box {
        padding: 15px;
        flex: 1;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .welcome-title {
        font-size: 3rem;
    }
    
    .login-card-art {
        padding: 35px 30px;
    }
}
