/** FORMULÁRIO DE CONTATO UPPLAY*/

#form-contato .btn_enviar {
    background: var(--orange);
    color: #fff;
    width: auto;
    padding: 5px 34px;
    font-weight: 600;
    border: none !important;
    font-size: 16px;
    border-radius: 20px;
    outline: none !important;
    text-transform: uppercase;
    font-size: 14px;
    float: right;
    box-shadow: 0 0 0 0 transparent;
}
#form-contato .btn_enviar:hover {
    background: black;
    color: var(--orange);
}
button#submit-contato {
    outline: none !important;
    border: none !important;
}

.form-control {
    width: 100%;
    background: rgba(126, 126, 128, 0.1);
    border: none;
    padding: 10px;
    border-radius: 3px;
    font-size: 14px;
    color: #2a2a2a;
    resize: none;
    height: 45px;
}
.form-control:focus {
    color: #495057;
    background-color: rgba(126, 126, 128, 0.1);
    border-color: black;
    outline: 0;
    box-shadow: 0 0 0 2px black;
}

.verificacao {
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.text-verificacao {
    font-weight: 600;
    letter-spacing: 2px;
    font-style: italic;
}

#refresh_codigo svg {
    fill: white;
    width: 20px;
    height: 20px;
    margin: 0 1px 2px 0;
}
#refresh_codigo {
    outline: none;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    background: black;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}
#refresh_codigo:hover {
    background: var(--orange);
}

/** ESTILOS TEXTOS */
.text-verificacao span {
    padding: 6px;
    font-size: 16px;
}
span.st1 {
    color: black;
    font-family: emoji;
}
span.st2 {
    color: #383838a6;
    font: message-box;
    text-shadow: 4px 2px 0px grey;
}
span.st3 {
    font-style: normal;
    font-weight: bolder;
    font-family: ui-sans-serif;
}
span.st4 {
    color: black;
    text-shadow: 0px 4px 2px #313131;
}
span.st5 {
    text-decoration: line-through !important;
    border: 1px solid #4a4c4a;
}
span.st6 {
    color: black;
    font-weight: 800;
}
.text-verificacao .st5 {
    margin: 2px;
}
.text-verificacao span:not(.st5) {
    background: #f2f2f2;
    margin: 2px;
}
.text-verificacao span {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.captcha-verificacao {
    display: none;
}


.verificacao_teste {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 475px) { 
    .verificacao {
        display: block !important;
    }
    .verificacao .form-control {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}