div#forms {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

div#forms nav.nav1 span {
    color: white;
    font-size: 14pt;
    text-align: center;
    font-family: var(--madimi);
}

div#forms .formulario {
    width: 50%;
    margin: 1rem;
    display: flex;
    padding: 1rem;
    border-radius: 16px;
    align-items: center;
    flex-direction: column;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 95%);
    background-image: linear-gradient(grey, grey, white);
}

div#forms .formulario nav img.imgForm{
    width: 350px;
}

div#forms .formulario select {
    border: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, 40%);
    border: 2px solid white;
    border-radius: 50px;
    font-weight: bolder;
    padding: .5rem 1rem;
    font-family: var(--montserrat);
}

div#forms .formulario input {
    width: 50%;
    border: none;
    margin: .5rem;
    outline: none;
    font-weight: bold;
    transition: all 2s ease;
    background-position: 95%;
    background-repeat: no-repeat;
    background-color: transparent;
    font-family: var(--montserrat);
    padding: .5rem 3rem .5rem .5rem;
    border-bottom: 2px solid black;
}

div#forms .formulario input:focus {
    border-radius: 16px;
    background-color: white;
}