/*
Palete de cores:
    #fff
    #49b3ad - verde mais claro
    #36bfb8 - verde da aplicação
    #1b736f - verde mais escuro

Degrade row:
    #2a5c5a - verde mais escuro 50%
    #227e74 - verde mais claro 82%

p: #333;
a: #333;
h: #333;

font-family: 'Roboto', sans-serif;
*/

/*fade in up*/

@keyframes fadeInUp {
  from { 
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*fade in*/

@keyframes fadeIn {
  from { 
  opacity: 0;
  }

  to {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  }
}

body {
  margin: 0;
  border: 0;
  padding: 0;
  background: #2c7d79;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  height: 100vh;
  margin: auto;
  display: flex;
}

a, p, h1{
  color: #333;
}
  
body::after{
  content: "";
  background-image: url('../img/bg.jpg');
  opacity: 0.4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;  
}

img {
  max-width: 200px;
}

.app {
  position: fixed;
  background-color: #fff;
  width: 400px;
  height: 800px;
  margin-left: auto;
  margin-top: auto;
  margin-right: auto;
  margin-bottom: auto;
  border-radius: 5px;
  padding: 1em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 31px -2px rgba(0, 0, 0, .3);

  /*fadein*/
  opacity: 0; 
  animation: fadeIn 1s ease-in-out 0s forwards;
}

a{
  text-decoration: none;
}

a:hover{
  color: #1b736f;
}

.recoveryPassword{
  width: 100%;
  font-size: 13px;
  color: #fff;
  text-align: right;
  padding-top: 30px;
}

.forgotPassword{
  padding: 0;
  margin: 0;
  margin-right: 40px;
}

.noAccount{
  font-size: 13px;
  color: #333;
  line-height: 2;
}

.bg{
  width: 600px;
  height: 600px;
  background: #36bfb8;
  position: absolute;
  top: -5em;
  left: -5em;
  right: 0;
  margin: auto;
  background-image: url("background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: ellipse(69% 46% at 48% 46%);
}

.form {
  position: absolute;
  visibility: visible;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
}

.header {
  width: 220px;
  height: 130px;
  margin: auto;
  margin-top: 75px;
  margin-bottom: 85px;
}

input {
  width: 300px;
  padding: 13px 15px;
  margin: 0.7em auto;
  border-radius: 100px;
  border: none;
  background: rgb(255,255,255,0.3);
  outline: none;
  color: #fff;
}

input::placeholder {
  color: #fff;
  font-size: 13px;
}

.inputs {
  position: relative;
  margin-top: -4em;
  width: 100%;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  text-align: center;
}

button {
  width: 100%;
  padding: 13px 15px;
  border-radius: 100px;
  border: none;
  background: #36bfb8;
  outline: none;
  color: #fff;
  cursor: pointer; 
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}
  
button:hover{
  background-color: #1b736f;
  color: #fff;
}

.imgLogin{
  width: 120px;
  height: 120px;
}

#input-container {
  position: relative;
}

#input-container > img {
  position: absolute;
  right: 0;
  padding-right: 70px;
  padding-top: 19px;
  opacity: 0.6;
}

#input-container > input {

}