* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.logo-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(252, 212, 174, 0.5));
    object-fit: contain;
}

.logo-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff9966, #ff5e62);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(255, 94, 98, 0.3);
}

.logo-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.login-section {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.login-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ff9966;
}

.login-subtitle {
    font-size: 1rem;
    color: #aaa;
    text-align: center;
    margin-bottom: 30px;
}

.login-button {
    background: linear-gradient(90deg, #ff9966, #ff5e62);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.4);
}

.login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 94, 98, 0.6);
}

.login-button:active {
    transform: translateY(0);
}

.info-section {
    max-width: 800px;
    text-align: center;
    margin-top: 20px;
    color: #aaa;
    line-height: 1.7;
}

.info-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff9966;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature h3 {
    color: #ff9966;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer {
    margin-top: 50px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .logo-title {
        font-size: 2.5rem;
    }
    
    .logo-img {
        width: 180px;
    }
    
    .logo-container {
        padding: 30px;
    }
    
    .login-title {
        font-size: 1.7rem;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 150px;
    }
    
    .logo-container {
        padding: 20px;
    }
    
    .logo-title {
        font-size: 2rem;
    }
    
    .login-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}
