.inputText{
    font-family: circe-font;
    color: var(--bordo-color);
    font-size: 1.5em;

    transition: border-color 250ms;
    border-style: solid;
    border-color: var(--bordo-color);   
    border-radius: 1em;
    border-width: 3px;

    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 20px;

    outline: none!important;

}

.btn-validar{
    font-family: circe-font;
    font-size: 1.5rem;
    letter-spacing: .3em;
    background-color: var(--bordo-color);
    color: white;
    
    margin-top: 20px;
    margin-bottom: 10px;
    
    border-radius: 1em;
    border-style: solid;
    border-color: var(--bordo-color);

    height: 2.5rem;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;

    outline: none!important;
    
}

.inputText:focus, 
.inputText:hover, 
.inputText:active
{
    transition: border-color 250ms;
    border-color: var(--Azul-color); 
}

.btn-validar:focus, 
.btn-validar:hover, 
.btn-validar:active
{
    transition: color 250ms;
    color: var(--bordo-color);

    transition: border-color 250ms;
    border-color: var(--Azul-color);

    transition: background-color 250ms;
    background-color: white;
}


.label {
    color: var(--bordo-color);
    font-family: circe-font;
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}


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

    .inputText{
        width: 70%;
    }
    
    
    .label {
        font-size: 1.2rem;
        width: 100%;
    }

    .btn-validar{
        font-size: 1rem;
        border-radius: 1.5em;
        width: 50%;
        margin: 10px;

    }
}

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

    .inputText{
        width: 70%;
    }
      
    .label {
        font-size: 1.5rem;
        width: 70%;
    }

    .btn-validar{
        width: 30%;
        margin: 10px;
    }
}

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

    .inputText{
        width: 60%;
    }
      
    .label {
        width: 60%;
    }

    .btn-validar{
        width: 20%;
        margin: 10px;
    }

}

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

    .inputText{
        width: 50%;
    }
      
    .label {
        width: 50%;
    }

    .btn-validar{
        width: 20%;
        margin: 10px;
    }
}

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

    .inputText{
        width: 40%;
    }
      
    .label {
        width: 40%;
    }

    .btn-validar{
        width: 15%;
        margin: 10px;
    }
}