.login-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    margin-top: 80px;
    background: linear-gradient(to bottom, #FFE5F1 0%, #FFD6E8 15%, #FFC8DD 30%, #CDB4DB 50%, #BDE0FE 70%, #A2D2FF 85%, #E8F5FF 100%);
    background-image: url('../images/gallery-bck.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 229, 241, 0.7) 0%, rgba(189, 224, 254, 0.7) 100%);
    z-index: 0;
}

.login-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.login-content {
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.2), 0 0 0 3px rgba(255, 200, 221, 0.3);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.login-header::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 10%;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

.login-header::after {
    content: '🌟';
    position: absolute;
    top: -20px;
    right: 10%;
    font-size: 2rem;
    animation: sparkle 2s infinite 0.5s;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.7;
    }
}

.login-header i {
    font-size: 4rem;
    color: #9c27b0;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9c27b0 0%, #FFC8DD 50%, #BDE0FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #9c27b0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(156, 39, 176, 0.2);
    background: linear-gradient(135deg, #9c27b0 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header .subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefits-section {
    margin: 2rem 0;
    position: relative;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #9c27b0;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(156, 39, 176, 0.2);
    position: relative;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFC8DD 0%, #9c27b0 50%, #BDE0FE 100%);
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 200, 221, 0.3) 0%, rgba(189, 224, 254, 0.3) 100%);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover::before {
    opacity: 1;
    animation: movePattern 3s infinite linear;
}

@keyframes movePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

.benefit-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 200, 221, 0.4) 0%, rgba(255, 182, 193, 0.4) 100%);
    border-color: rgba(255, 107, 157, 0.3);
}

.benefit-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(189, 224, 254, 0.4) 0%, rgba(162, 210, 255, 0.4) 100%);
    border-color: rgba(74, 144, 226, 0.3);
}

.benefit-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 237, 153, 0.4) 0%, rgba(255, 218, 68, 0.4) 100%);
    border-color: rgba(255, 193, 7, 0.3);
}

.benefit-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(205, 180, 219, 0.4) 0%, rgba(156, 39, 176, 0.4) 100%);
    border-color: rgba(156, 39, 176, 0.3);
}

.benefit-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
    border-color: rgba(156, 39, 176, 0.5);
}

.benefit-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-item:nth-child(1) i {
    color: #FF6B9D;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFC8DD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item:nth-child(2) i {
    color: #4A90E2;
    background: linear-gradient(135deg, #4A90E2 0%, #BDE0FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item:nth-child(3) i {
    color: #FFC107;
    background: linear-gradient(135deg, #FFC107 0%, #FFE082 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item:nth-child(4) i {
    color: #9c27b0;
    background: linear-gradient(135deg, #9c27b0 0%, #CDB4DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item:hover i {
    transform: scale(1.2) rotate(10deg);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.2) rotate(10deg);
    }
    50% {
        transform: scale(1.3) rotate(-10deg);
    }
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    color: #9c27b0;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.benefit-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 500;
    display: block;
    width: 100%;
    margin-top: 0.5rem;
}

.signup-section {
    text-align: center;
    margin-top: 3rem;
    position: relative;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    width: 100%;
    max-width: 450px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #9c27b0 0%, #FF6B9D 50%, #FFC8DD 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
}

.btn-large:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large i {
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.btn-large span,
.btn-large {
    position: relative;
    z-index: 1;
}

.login-note {
    margin-top: 1.5rem;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.login-note a {
    color: #9c27b0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.login-note a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9c27b0 0%, #FF6B9D 100%);
    transition: width 0.3s ease;
}

.login-note a:hover {
    color: #FF6B9D;
}

.login-note a:hover::after {
    width: 100%;
}

/* Decorative elements */
.login-content::before {
    content: '⭐';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: twinkle 2s infinite;
}

.login-content::after {
    content: '💫';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: twinkle 2s infinite 1s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .login-container {
        padding: 1rem;
    }
    
    .login-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .login-header i {
        font-size: 3rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
        flex-direction: column;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item h3 {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .benefit-item p {
        display: block;
        width: 100%;
        margin-top: 0;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .login-header::before,
    .login-header::after {
        display: none;
    }
    
    .signup-section::before,
    .signup-section::after {
        display: none;
    }
}

