/** FORMULÁRIO DE CONTATO UPPLAY*/

#form-contato .btn_enviar,
#form-contato-curriculo .btn_enviar {
    background: var(--dark-blue);
    width: auto;
    font-size: 12px;
    text-transform: uppercase;
    align-items: center;
    margin: 0;
    padding: 10px 40px 10px 30px;
    height: auto;
    border-radius: 0 0 50px 0;
    font-weight: 600;
    float: left;
    cursor: pointer;
    transition: .5s ease-in-out;
    color: white;
}
#form-contato .btn_enviar:hover,
#form-contato-curriculo .btn_enviar:hover  {
    background: var(--light-blue);
}
button#submit-contato,
button#submit-contato-curriculo {
    outline: none !important;
    border: none !important;
}

.arquivo-curriculo {
    margin: 10px 0 5px 0;
}
input[type=file] {
    max-width: 100%;
}

.form-control {
    width: 100%;
    background: white !important;
    border: none;
    padding: 10px;
    border-radius: 3px;
    font-size: 14px;
    color: #2a2a2a;
    resize: none;
    height: 45px;
    border: 1px solid #d0d0d0 !important;
}
.form-control:focus {
    color: #495057;
    background-color: white !important;
    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;
}

.verificacao_teste {
    display: flex;
    align-items: center;
    width: 60%;
    padding-right: 5px;
    min-height: 45px;
}
button#submit-contato {
    outline: none !important;
}
#refresh_codigo {
    outline: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    padding: 0;
}
#refresh_codigo svg {
    fill: white;
    width: 15px;
    height: 20px;
    margin: 0 1px 2px 0;
}
#refresh_codigo:hover svg {
    fill: var(--dark-blue);
}

/** 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;
}


@media screen and (max-width: 475px) { 
    .verificacao {
        display: block;
    }
    .verificacao .form-control {
        margin-left: 0 !important;
        margin-top: 10px;
    }
}