body {
    margin: 0;
    height: 100vh; /* altura total de la pantalla */
    display: flex;
    justify-content: center; /* centra horizontal */
    align-items: center;     /* centra vertical */
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    background: linear-gradient(135deg, #74ebd5, #9face6);

}
.centrar{
    text-align: center;
}
.bg-login {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

input[type="email"],
input[type="password"], 
input[type="text"]  {
    width: 100%;
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
}