body { 
    background: #ffffff; 
    color: #000000; 
    font-family: 'Arial', sans-serif; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100vh; 
    margin: 0; 
    text-align: center; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    padding: 20px;
}

.main-logo {
    width: 100%;
    max-width: 400px; /* Ajusta según el tamaño de tu imagen */
    height: auto;
    margin-bottom: 20px;
}

h1 { 
    font-size: 2.5rem; 
    letter-spacing: 5px; 
    margin: 10px 0; 
    font-weight: bold;
}

.divider {
    width: 80%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}

.buttons { 
    display: flex; 
    gap: 30px; 
    margin-top: 20px;
}

button { 
    background: #ffffff; 
    border: 1px solid #1A3A5A; 
    color: #1A3A5A; 
    padding: 12px 35px; 
    cursor: pointer; 
    letter-spacing: 1px; 
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease; 
    /* La sombra coral que me pediste */
    box-shadow: 0 0 10px rgba(255, 127, 80, 0.4); 
}

/* Efecto para el botón ROOT con más intensidad coral */
.btn-root {
    border-color: #1A3A5A;
    box-shadow: 0 0 15px rgba(255, 127, 80, 0.5);
}

button:hover { 
    background: #1A3A5A; 
    color: #ffffff; 
    /* El brillo coral estalla al pasar el mouse */
    box-shadow: 0 0 20px #FF7F50, 0 0 30px rgba(255, 127, 80, 0.8);
    transform: translateY(-2px);
}

.footer { 
    margin-top: 50px; 
    font-size: 0.8rem; 
    opacity: 0.5; 
    letter-spacing: 2px; 
}