<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/*CSS form thead INPUT form COMPONENT*/

.agora-plus-input-container {
    max-width: 380px;
    margin-bottom: 10px;
}

.agora-plus-input-container &gt; label,
.agora-plus-input-container &gt; legend,
.agora-plus-input-container &gt; .two-column &gt; label {
    margin-bottom: 4px;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="phone"],
input[type="tel"],
input[type="email"],
input[type="password"] {
    width: 100% !important;
    height: 36px;
    border-radius: 3px;
    background-color: #ffffff;
    border: solid 1px #e0e0e0;
    font-size: 14px;
    box-sizing: border-box;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
 }


input[type="text"]:not([disabled]):focus,
input[type="number"]:not([disabled]):focus,
input[type="date"]:not([disabled]):focus,
input[type="search"]:not([disabled]):focus,
input[type="tel"]:not([disabled]):focus,
input[type="email"]:not([disabled]):focus,
input[type="password"]:not([disabled]):focus {
    outline: none;
    border: solid 1px #0abeec;
}


.input-icon {
    margin-left: 8px;
}


input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"] {
    text-indent: 12px;
}


/*  remover setas do input */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.errors-container-wrapper {
    min-height: 14px;
    margin-top: 4px;
}

.error-message {
    font-size: 12px;
    color: #e8142e !important;
}

label.requiredField &gt; md-icon {
    width: 4px;
    height: 4px;
    min-height: 4px;
    min-width: 4px;
}

label,
legend {
    font-size: 12px;
    color: #657a82;
    margin-bottom: 4px !important;
}






/* IE specific overrides*/
input[type=text]::-ms-clear,
input[type=password]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}
/* End IE specific overrides*/

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #B2BCC0;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #B2BCC0;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
}


:-ms-input-placeholder { /* IE 10+ */
    color: #B2BCC0;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
}

:-moz-placeholder { /* Firefox 18- */
    color: #B2BCC0;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
}
</pre></body></html>