@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

:root{
    --vermelho-primario: #E51620;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Noto Sans', sans-serif;

}

.box-degrade {
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(35deg, #1b1b1b, rgb(34, 34, 34), rgb(29, 29, 29), rgb(24, 24, 24), rgb(20, 20, 20), rgb(15, 15, 15), rgb(5, 5, 5) );
    background-size: 500% 100%;
    animation: degrade-animado 20s infinite alternate;

}

@keyframes degrade-animado{

    0%{
      background-position-x: 0%;  
    }
    

    100%{
        background-position-x: 100%;
    }
   

}

.wrapper{
    width: 420px;
    color: #fff;
    border-radius: 10px;
    padding: 0px 40px;
    text-align: center;
}

.wrapper h1{
    font-size: 36px;
    text-align: center;
}

.wrapper .input-box{
    position: relative;
    width: 100%;
    height: 60px;
    margin: 20px 0;
}

.input-box input {
    width: 100%;
    height: 60px;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder{
    color: rgb(253, 253, 251); 
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;

}

.wrapper .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size:  14.5px;
    margin: -15px 0 15px;
}

.remember-forgot label input{
    accent-color: #fff;
    margin-right: 3px;

}

.remember-forgot a {
    color: #fff;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.wrapper .btn {
    width: 100%;
    height: 50px;
    /* background-color: #201f1f; */
    background-image: linear-gradient(120deg, #fcebbf, #e0c381, #916423);
    border: none;
    outline: none;
    border-radius: 10px;
    color: #fff;
    box-shadow: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 0 5px #2121218a;
    transition: .3s ease-out;
}
.wrapper .btn:hover{
    filter: brightness(1.1);
    text-shadow: 0 0 5px #212121c7;
}

.wrapper .register-link {
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
}

.register-link p a { 
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.register-link p a:hover {
    text-decoration: underline;
}

.logotipo img{
    height: 100px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.popup{
    padding: 10px 15px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--vermelho-primario);
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.171);
}
.popup .mensagem{
    color: white;
    font-weight: bold;
}