@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    color: #1a1a1a;
}
body>h1{
    margin-bottom: 100px;
    color: rgb(67, 173, 67);
}

.contenedorFormularios{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
}
.contenedor{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 30px;
    padding: 20px;
}

.contenedor a{
    text-decoration: none;
    color: #1a1a1a;
}

.contenedorCiudad{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ciudad{
    height: 298px;
    width: 350px;
}

.contenedorCiudad button{
    width: 50px;
    padding: 5px;
}
