/*
Palete de cores:
    SHADOW-BOXESQUERDA: -webkit-box-shadow: 10px 13px 20px -12px rgba(0,0,0,0.53);
-moz-box-shadow: 10px 13px 20px -12px rgba(0,0,0,0.53);
box-shadow: 10px 13px 20px -12px rgba(0,0,0,0.53);

    SHADOW-BOXDIREITA:-webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.64);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.64);
     box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.64);



    #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-color: #fff;
    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;  
  }

.row{
    margin-left: 200px;
    margin-right: 200px;
    display: flex;
    background:#36bfb8;
    box-shadow: 0 6px 31px -2px rgba(0, 0, 0, .8);
    
    /*fadein*/
    opacity: 0; 
    animation: fadeIn 1s ease-in-out 0s forwards;
}

.column{
    flex: 50%;
    height: 300px;
    padding: 150px;
    text-align: center;

    
    /*fadein*/
    opacity: 0; 
    animation: fadeIn 1s ease-in-out 1s both;
}

.divider{
    overflow: hidden;
    border-left: 1px solid #333;
    height: 300px;
    margin: auto;
    top: 0;
    opacity: 0.2;
}

.left{
    padding-top: 170px;
}

.centered {
    position: absolute;
    top: 200px;
}

.btnLogin{
    width: 200px;
    padding: 13px 15px;
    border-radius: 100px;
    border: none;
    background: #333;
    outline: none;
    color: #fff;
    cursor: pointer; 
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    box-shadow: 0 6px 31px -2px rgba(0, 0, 0, .1);
}

.btnLogin:hover{
    background-color: #1b736f;
    color: #fff;
}

.imgLogin{
    width: 300px;
    height: 300px;
}


.logo{
    padding: 150px;
}

.buttonLogin{
    padding-top: 50px;
    width: 100%;
}

.btnLogin:hover{
    background-color: #1b736f;
}

