@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap');

body{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Source Sans Pro', sans-serif;   
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    user-select: none;
}
body::before { /*Esmaecimento da tela de fundo*/
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 25, 48, 0.75);
  }
#titulo{
    font-size: 24px;
    color: #0d2738;
}
#texto2{
    color: #28363f;
}
#insiraseuemail{
    font-size: 16px;
    font-weight: bold;
    color: #0d2738;
}
#boxinsira{
    width: 100%;
    padding: 10px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background-color: rgb(233, 245, 255);
    border-radius: 30px;
    border: none;
    margin-top: 5px;
}
#boxinsira::after { /*Efeitos de transição e cores do icon*/
    font-family: 'Source Sans Pro', sans-serif;        
    font-size: 18px;
    color: #3d3d3d;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 40px;
    left: 35px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
#boxesqueceusenha{
    box-shadow: 3px 3px 25px rgba(0, 44, 65, 0.7);
    border-radius: 30px;
    width: 370px;
    height: 280px;
    padding: 25px;
    background-color: #fff;
}
#boxesqueceusenha2{
    box-shadow: 3px 3px 25px rgba(0, 44, 65, 0.7);
    border-radius: 30px;
    width: 370px;
    height: 360px;
    padding: 25px;
    background-color: #fff;
}
#botao{
    background: linear-gradient(to left, #229beb, #0474be, #0065a8);
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: bold;
    border: none;
    padding: 10px;
    border-radius: 30px;
    margin-top: 10px;
    width: 100%;
    transition-duration: 0.8s;
    transition-timing-function: ease-in;
    transition-property: all;
    cursor: pointer;
}
#botao:hover{
    background: linear-gradient(to left, #0e72b4, #0474be, #014c7e);
}
#sucesso{
    box-shadow: 3px 3px 25px rgba(0, 44, 65, 0.7);
    border-radius: 30px;
    width: 370px;
    /* height: 350px !important; */
    padding: 25px;
    background-color: rgb(255, 255, 255);
    color: rgb(40, 173, 0) !important;
    text-align: center;
}
#naocadastrado{
    box-shadow: 3px 3px 25px rgba(0, 44, 65, 0.7);
    border-radius: 30px;
    width: 370px;
    padding: 25px;
    background-color: rgb(255, 255, 255);
    color: #f00000 !important;
    text-align: center;
}
#timer{
    /* border: solid red 1px; */
    position: absolute;
    color: #3d3d3d;
}
/* @media only screen and (max-width: 600px) {
    #boxesqueceusenha, #boxesqueceusenha2 { 
    width: 100%;
    } 
    } */
    
