
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{   
    font-family: "Nunito", sans-serif;
    width: 100%;
    min-height: 100vh;
    font-size: 16px;
    font-size: 100%;
}

  .imgResponsiveLogin{

    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50%;
    height: auto;
    margin: 0 auto;
}

  #container{
    display: flex;
    height: 100vh;
    width: 100%;
  }

  .containerFilho1{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 99vh;
    width: 50%;
    background: #EBEAF7;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }

  .containerFilho2{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 50%;

  }


#containerForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 100px auto;
    width: 400px;
    height: 300px;

    border-radius: 10px;
    box-sizing: border-box;
}

#divTop{
    text-align: center;
    padding: 15px 16px;
    color: #4B166A;
}

#divTop h1{
  margin-bottom:10px;
}

#divTop h2{
  margin-bottom: 15px;
  color: #6158ff;
}


#divForm{

    display: flex;
    justify-content: flex-start;  
    flex-direction: column; 
    padding: 10px;

}

#divForm div{
    margin: 5px;
}

#divTop p{
    opacity: 70%;
    font-size: 14px;
}

.mensagem{
  text-align: center;
  font-weight: bold;
  font-size: 0.8em;
  color: #ff3f3f;
}

.inputForm{

  display: flex;
  align-items: center;
  justify-content: center;
}

.inputForm input{
    border: none;
    color: #4B166A;
    opacity: 70%;
    background:#f3f2f2;
    height: 20px;
    border-radius: 5px;
    padding: 15px 15px 15px 10px;
    border: #0000004b 1px solid;
    margin: 0 auto;

}
.inputForm input::placeholder {
  color: #4B166A;
  opacity: 70%;
}
.inputForm input:focus {
    outline: none;
    color: #4B166A;
    border: #000000 1px solid;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 4px;
  }

  input:enabled{
    color: #4B166A;
    opacity: 100%;
  }

  #divSubmit{
    display: flex;
    flex-direction: column;
  }

  #enviar{
    background-color: #6c63ff;
    margin: 20px auto 5px;
    width: 348px;
    height: 40px;
    border: 0px;
    border-radius: 5px;
    color: #f0f0f0;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
  }

  #enviar:hover{
    background-color:  #6158ff;
    box-shadow: 1px 1px 5px #6c63ff;
    color: #ffffff;
  }

  #email{
    width: 348px;
    margin-bottom: 5px;
  }

  #password{
    width: 348px;
    margin-bottom: 5px;
  }

.esquecido{
  text-decoration: none;
  color: #6158ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.esquecido:hover{
  text-decoration: underline;
  color: #584ff5;
}

@media only screen and (max-width: 1199px){

  #container{
    flex-direction: column;
  }
  .containerFilho1{
    width: 100%;
    flex: 0;
    background: none;
    box-shadow: none;
  }
  .containerFilho2{
    width: 100%;
    flex: 0;

  }

}