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;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

form {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}
label {
    display: block;
    margin-left: 20px;

    font-weight: bold;
    text-align: left;
    width: 100%;
}
input[type="email"],
input[type="password"] {
    width: calc(100% - 22px);
    height: 60px;
    font-size: 20px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 50px;
}

input[type="email"] {
    background-image: url('../img/Icono_Correo.png');
}

input[type="password"] {
    background-image: url('../img/Icono_Llave.png');
}


@keyframes colorFlow {
    0% {
        background-color: rgb(243, 144, 116);
    }
    50% {
        background-color: #eb690c;
    }
    100% {
        background-color: rgb(243, 144, 116);
    }
}

input[type="submit"] {
    width: calc(100% - 22px);
    font-family: "Berlin Sans FB";
    font-size: 30px;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    animation: colorFlow 7s infinite;
}

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

#titulo-inicio-sesion {
    font-size: 80px;
    text-align: center;
}

.recuadro {
    width: 600px;
    height: 700px;

    margin-bottom: 20px;

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

    background-color: hsl(0, 0%, 100%); /* White background with 80% opacity */

    border-radius: 10px;
    transition: box-shadow 0.3s ease
}

.recuadro:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

#form-login {
    width: 500px;
    height: 375px;

    font-size: 30px;

    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;

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


#login-img {
    width: 250px;
    height: 250px;
    padding: 10px 0px;
}

#login-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

