/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .contenido-principal form {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 1rem;
    margin: 0 auto;
 }

 .contenido-principal form label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    width: -webkit-fill-available;
    margin-bottom: 0;
 }
 .contenido-principal form input[type="submit"] {
    padding: 0.75rem 2rem;
    background-color: #0073aa;
    border-radius: 4px;
    color: #fff;
    border: none;
    cursor: pointer;
    height: fit-content;
    width: fit-content;
 }

 .contenido-principal h2 {
    margin-bottom: 2rem;
    font-weight: bolder;
    text-transform: capitalize;
 }