﻿input,
select,
option,
textarea {

}

.input-sem-borda {
    border: none;
    border-bottom: 1px solid #000;
}

.input-sem-borda-50 {
    width:50%;
    border: none;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 766px) {
    label {
        font-size: small !important;
    }
}

@media screen and (min-width: 767px) {
    label {
        font-size: medium !important;
    }
}

.formulario-com-erros {
    font-weight: bold;
    font-size: small;
    margin: 5px;
    color: red;
    animation: animatezoom 0.9s !important
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}