@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body{
    width: 100%;
    height: 100vh;
    background-image: url(images/fundo.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 6%;
}

form{
    background: #fff;
    max-width: 500px;
    height: 450px;
    padding: 40px;
    border-radius: 20px;
}

form h1{
    text-align: center;
    margin-bottom: 10px;
    color: #037c15;
    font-size: 22pt;
}

form p{
    text-align: center;
    margin-bottom: 25px;
}

form .input-single{
    position: relative;
    margin: 30px 0;
}

form .input-single label{
    position: absolute;
    top: 7px; /*adicionado*/
    left: 0;
    bottom: 5px;
    cursor: text;
    transition: all 0.5s;
    color: #808080;
}

form .input-single .input{
    width: 100%;
    border: 0;
    border-bottom: 2px solid #808080;
    padding: 5px;
    outline: 0;
    font-size: 16px;
}

form .input-single .input:focus{
    border-bottom: 2px solid #037c15;
}

form .input-single .input:focus ~ label,
form .input-single .input:valid ~ label{
    transform: translateY(-20px);
    font-size: 12px;
    color: #037c15;
}

.btn{
    width: 100%;
    text-align: center;
}

form input[type=submit]{
    padding: 10px 40px;
    border: 0;
    border-radius: 10px;
    background-color: #037c15;
    color: #fff;
    font-size: 14pt;
    cursor: pointer;
    transition: all .5s;
}

form input[type=submit]:hover {
    background-color: #02580F;
}

.error_password {
    position: relative;
    color: red;
    top: 4px;
}

/* .form-container .container h1 {
    font-weight: 500;
    font-size: 3rem;
    color: #fff;
    display: flex;
    gap: 10px;
} */

#tempo-restante {
    color: #fff;
}

/* .inputCampo {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 2px solid #02580f;
    color: #02580f;
    font-size: 1.3rem;
    font-weight: 500;
    box-sizing: border-box;
} */

.tarja {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #037c15; /* Cor de fundo da tarja */
    color: #fff; /* Cor do texto da tarja */
    padding: 10px;
    text-align: center;
    display: none; /* Inicialmente oculto */
    z-index: 9999; /* Certifique-se de que a tarja esteja acima de outros elementos */
    transition: top 0.3s ease; /* Adiciona uma transição suave para o movimento */
}

@media (max-width: 700px) {
    #bloqueio #tempo-restante {
        text-align: center;
    }

    #bloqueio > section > div > h1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #bloqueio > div {
        right: initial !important;
    }
}