body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #e7e7ec;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
    
/* Contenedor principal centrado */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Título con degradado */
.main-title {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #024f8e, #3fb8f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Cuadro de soporte */
.support-box {
    background: rgba(8, 4, 226, 0.767);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(6, 1, 85, 0.495);
    max-width: 500px;
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.support-icon {
    width: 10   0px;
    height: 80px;
    margin-bottom: 20px;
}

.support-text {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    color: #04c8da;
    margin-bottom: 20px;
}

.login-btn {
    background: linear-gradient(135deg, #0b3f7b, #1976d2);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #0da1a1, #1565c0);
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .support-box {
        padding: 20px;
        max-width: 90%;
    }
    
    .support-text {
        font-size: 1.2rem;
    }
}