.gradient-custom-2 {
    background: linear-gradient(135deg, #6A0B93, #4B0082);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .gradient-form {
        height: 100vh !important;
    }
}

@media (min-width: 769px) {
    .gradient-custom-2 {
        border-top-right-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}

/* Card Styles */
.card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* Logo Container */
.logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.logo-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #6A0B93, #E6E6FA);
    border-radius: 2px;
}

/* Button Styles */
.btn-primary {
    position: relative;
    overflow: hidden;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(106, 11, 147, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

/* Decorative Elements */
.decorative-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 2px,
        transparent 2px,
        transparent 8px
    );
}

.decorative-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #6A0B93, #E6E6FA, #6A0B93);
}

/* Welcome Text Area */
.welcome-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
    color: white;
}

.welcome-text h4 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Logo Image */
.logo-img {
    transition: transform 0.3s ease;
    max-width: 220px;
    margin-bottom: 1.5rem;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Background Animation */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(106, 11, 147, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(230, 230, 250, 0.2) 0%, transparent 40%);
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Welcome Icon */
.welcome-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Live Más Container */
.livemas-container {
    position: relative;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    margin-top: 2rem;
}

/* Recovery Page Styles */
#recovery {
    padding-top: 70px;
    background-image: url('/img/kilo.jpg');
}