body {
    background-color: #005BAA;
    margin-top: 20px;
    display: flex;
    align-content: center;
    justify-content: center;
    height: 100vh;
    
}

.card {
    background-color: white;
    display: grid;
    grid-template-rows: repeat(3, auto);
    gap: 8px;
    margin-top: 90px;
    width: 600px;
    height: 80%;
    border-radius: 10px;
    max-width: 600px;
}
.imagen{
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 60px;
    
}

img{
    height: 100px;
}

.content {
    background-color: white;
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 20px;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.formulario {
    background-color: white;
    display:flex;
    align-content: center;
    justify-content: center;
    border-radius: 50px;
    height: 300px;
}
form{
    display: grid;
    grid-template-rows: repeat(3, auto);
    width: 90%;
   
}
label{
    height: 0px;
    padding-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
input{
    outline: none;
    border: none;
    border-bottom: 1px solid black; 
    height: 20px;
}

button{
    background-color: #323232;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    height: 60px;
    border-radius: 10px;
    border: 0;
    color: white;
}