body {
    background-color: #8D1431;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.formulario {
    background: white;
    padding: 30px;
    width: 400px;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
    justify-content: center;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    color: #8D1431;
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    color: #8D1431;
}

label {
    font-family: 'Times New Roman', Times, serif;
    color: black;
}

input[type="text"] {
    width:100%;
    height:40px;
    font-size:18px;
    text-align:center;
    background-color: #8D1431;
    color: white;
    border: none;
    
                   }

input[type="password"] {
    width:100%;
    height:40px;
    font-size:18px;
    text-align:center;
    background-color: #8D1431;
    color: white;
    border: none;
                   }

button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #8D1431;
    color: #D9B0B7;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
       }

button:hover {
    background-color: #D9B0B7;
    color: #8D1431;
            }
