.welcome-message {
    text-align: center;
    margin-top: 50px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 10;
}

.welcome-message h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00cba0 0%, #ffffff 50%, #00cba0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 203, 160, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.welcome-message p {
    font-size: 1.2rem;
    color: #b0c4c7;
    opacity: 0.8;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 203, 160, 0.5), 0 0 30px rgba(0, 203, 160, 0.5), 0 0 40px rgba(0, 203, 160, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 203, 160, 0.8), 0 0 40px rgba(0, 203, 160, 0.8), 0 0 50px rgba(0, 203, 160, 0.8);
    }
}

/* Additional Enhancements */
.login__switch {
    color: var(--text-color);
}

.login__switch button {
    background: linear-gradient(135deg, #00cba0, #00a085);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.login__switch button:hover {
    background: linear-gradient(135deg, #00a085, #00cba0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(0, 203, 160, 0.5);
}

/* Particle effect overlay */
.particle-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(0, 203, 160, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: sparkle 10s linear infinite;
}

@keyframes sparkle {
    0% { opacity: 0.3; transform: translateY(0px); }
    50% { opacity: 0.6; transform: translateY(-10px); }
    100% { opacity: 0.3; transform: translateY(0px); }
}

.login__access, .login__register {
    margin-top: -50px;
}