body {
    margin: 0;
    padding: 0;
    background-color: #fce4ec;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contenedor {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.logo {
    width: 150px;
    margin-bottom: 30px;
}

.botones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.boton {
    text-decoration: none;
    background-color: #ec407a;
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: #d81b60;
}