.form__group {
    position: relative !important;
    padding: 30px 0 0 !important;
    margin-top: 0px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: left !important;
    align-items: center !important;
}

.form__field {
    font-family: circe-font;
    border: 2px solid  var(--bordo-color);
    text-indent: 20px;
    border-radius: 2em;
    outline: 0;
    font-size: 1.5em;
    color:  var(--bordo-color);
    background: transparent;
    transition: border-color 0.2s;
    background-color: white;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.form__field::placeholder {
    color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 1.3rem;
    cursor: text;
    top: 30px;
}

.form__label {
    position: absolute;
    top: 0;
    margin-left: 15px;
    margin-top: 10px;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color: var(--bordo-color);
}

.form__field:focus ~ .form__label {
    position: absolute;
    top: 0;
    display: block;
    transition: 0.2s;
    font-size: 1rem;
    color:  var(--bordo-color);
}

.form__field:focus {
    border-color: var(--Azul-color);
    border-image-slice: 1;
}

/* reset input */
.form__field:required,
.form__field:invalid {
    box-shadow: none;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

    .form__group{
        width: 70% !important;
    }
    
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px){

    .form__group{
        width: 70% !important;
    }
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .form__group{
        width: 60% !important;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .form__group{
        width: 50% !important;
    }
      
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .form__group{
        width: 40% !important;
    }
      
}