/* Aplicamos el fondo de la página con imagen y gradiente */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url(bg.png), linear-gradient(rgb(235 208 220), rgb(255 255 255 / 50%));
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}

/* Media query para pantallas grandes (Desktop) */
@media (min-width: 1024px) {
    body {
        background-size: contain; /* En desktop, el fondo tendrá tamaño "contain" */
    }
}

/* Estilo para el contenedor */
.container {
    text-align: center;
    color: white;
    padding: 20px;
    backdrop-filter: blur(50px); /* Añade un filtro borroso para el contenedor si el fondo es brillante */
    border-radius: 10px; /* Opcional: Redondea los bordes del contenedor */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra suave para hacer que el contenedor resalte */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

/* Estilo para el logo */
.logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

/* Estilo para el botón */
.button {
    padding: 15px 30px;
    background-color: #ee7aae; /* Color del botón */
    color: white;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-transform: uppercase; /* Hace que el texto del botón esté en mayúsculas */
}

.button:hover {
    background-color: #d66c93; /* Un tono más oscuro al pasar el ratón */
}
