body {
    background-image: url("../img/boca-fondo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, .5);
    color: #b31d15;
    font-size: 30px;
    padding: 10px;
    border-radius: 6px;
}

form {
    display: flex;
    justify-content: center;
    width: 500px;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    background-color: rgba(255, 255, 255, .4);
    border-radius: 20px;
}

.campo {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.campo input {
    width: 100%;
    padding: 10px;
    border: solid 1px yellow;
    border-radius: 6px;
    background-color: transparent;
    outline: none;

}

.campo label {
    font-size: 1.2rem;
    flex-basis: 30%;
}

button {
    width: 100px;
    height: 30px;
    background-color: blue;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    color: yellow;
}