/* Estilo general del cuerpo */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #F0F4F9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

a{
    text-decoration:none;
}

/* Logo */
.logo {
    width: 499px;
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
}

/* Texto */
.text {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    max-width: 50%;
}

/* Botón */
.button {
    background-color: #22BFA2;
    border: 1px solid #FFFFFF;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    
}

.button:hover {
    background-color: #1AA88A;
}

/* Diseño responsivo */
@media (max-width: 600px) {
    .button {
        padding: 10px 20px;
        font-size: 14px;
    }
}