html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Cambiado de center a flex-start */
    align-items: center;
}

form {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}

label {
    display: block;
    margin-left: 20px;
    font-weight: bold;
    text-align: left;
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: calc(100% - 22px);
    height: 60px;

    font-size: 20px;

    padding: 10px;
    margin: 0px;

    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

@keyframes colorFlow {
    0% {
        background-color: rgb(241, 109, 74);
    }
    50% {
        background-color: #eb690c;
    }
    100% {
        background-color: rgb(241, 109, 74);
    }
}

input[type="submit"] {
    width: calc(100% - 22px);

    font-size: 30px;
    font-family: "Berlin Sans FB";

    padding: 10px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    animation: colorFlow 7s infinite;
}

input[type="submit"]:hover {
    transform: scale(1.1);
}

#registroForm {
    width: 500px;
    height: 600px;

    background-color: white;

    font-size: 30px;

    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.recuadro h1 {
    font-size: 70px;
    margin: 10px 0px;
}

.recuadro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-recuadro:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Añade una sombra al hacer hover */
}

.recuadro-boton {
    width: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}
