/*
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;
    }
  }
  
  a, p, h1{
    color: #333;
  }
  
  body {
    margin: 0;
    border: 0;
    padding: 0;
    background: #2c7d79;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    height: 100vh;
    margin: auto;
    display: flex;
  }
      
  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;  
  }
    
  .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;
  }
    
  .login{
    font-size: 13px;
    line-height: 2;
  }
    
  .bg{
    width: 600px;
    height: 720px;
    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 {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 75px;
    position: relative;
  }
  
  .uploadImageDiv{
    width: 190px;
    height: 190px;
    text-align: center;
    margin: auto;
  }
  
  .imgRegister{
    width: 190px;
    height: 190px;
    border-radius: 220px;
    position: relative;
    backface-visibility: hidden;
  }
    
  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;
  }
    
  #input-container {
    position: relative;
  }
    
  #input-container > img {
    position: absolute;
    right: 0;
    padding-right: 70px;
    padding-top: 21px;
    opacity: 0.6;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
    
  #input-container > input {
  
  }
  
  .inputRecovery{
    margin-top: 30px;
  }