@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,500);
*:focus {
  outline: none;
}
body{
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #222;
  }
a{
  text-decoration: none !important;
}
.landing{
    background-color:white;
    max-height: 100%;
}
.container-landing{
   padding: 20px 30px 0px 30px;
}

/* Navigation bar */
.navbar{
    padding:0 0 15px 0;
}
.nav-item{
    padding: 0 18px; 
}
.nav-link{
    color:rgba(44, 44, 44, 0.651);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.nav-link:hover{
    color: rgb(27, 27, 27);
}
.brand{
    font-family: "Ubuntu";
    color: rgba(0, 0, 0, 0.856);
    font-size: 3rem;
}
.brand:hover{
    color: rgb(0, 0, 0) !important;
    text-shadow: #bdbdbd 0 4px 5px;
}
.g-logo{
    font-size: 4rem;
    padding: 0;
}
.i-logo{
    color: red;
    padding: 0;
}
p.slogan{
    font-size: 2rem;
    font-weight:700;
    font-family: 'Montserrat Alternates', sans-serif; 
}

.row-cta{
    background-color: white;
    width: 100%; 
    max-height: 100%;
}

.left-column{
    float:left; 
    margin-left: 50px;
    width:30%;
    height:480px;
    padding-top: 100px;
    text-align: center;
    background-color: white;
    align-items: center;
}
.right-column{
    float:right;
    width:60%;
    height:480px;
    background-color: white;
}
img{
    position: relative;
    width:auto;
    height:90%; 
    right: 0px; 
}

a.button3{
    display:inline-block;
    padding:0.3em 1.2em;
    margin:0 0.3em 0.3em 0;
    border-radius:2em;
    box-sizing: border-box;
    text-decoration:none;
    border:1px solid;
    font-weight:700;
    background-color: white;
    text-align:center;
    transition: all 0.2s;
}
a.login{
    border-color: #01e701;
    color: #01e701;
}
a.signup{
    border-color:#3bbcf8;
    color:#3bbcf8;
}
a.login:hover{
    background-color:#01e701;
    color:#FFFFFF;
}
a.signup:hover{
    background-color:#3bbcf8;
    color:#FFFFFF;
}
@media all and (max-width:30em){
    a.button3{
        display:block;
        margin:0.2em auto;
    }
}

button {
    position: relative;
    padding-top: 10px;
    left: 110px;
    padding: 19px 36px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    border-radius: 40px;
    border: none;
   }
   
   button span {
    position: relative;
    color: #fff;
    font-family: Arial;
    letter-spacing: 8px;
    z-index: 3;
   }
   
   button .liquid {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 200px;
    background: #3bbcf8;
    box-shadow: inset 0 0 50px #01e701;
    transition: .5s;
   }
   
   button .liquid::after,
   button .liquid::before {
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    background: #fff;
   }
   
   button .liquid::before {
    border-radius: 45%;
    background: rgba(20, 20, 20, 1);
    animation: animate 5s linear infinite;
   }
   
   button .liquid::after {
    border-radius: 40%;
    background: rgba(20, 20, 20, .5);
    animation: animate 10s linear infinite;
   }
   
   button:hover .liquid {
    top: -120px;
   }
   
   @keyframes animate {
    0% {
     transform: translate(-50%, -75%) rotate(0deg);
    }
   
    100% {
     transform: translate(-50%, -75%) rotate(360deg);
    }
   }


.footer{
  position: relative;
  margin-top: 60px;
  width: 100%;
  text-align: center;
  bottom:0;
}

#login-box {
    position: relative;
    margin: 0 auto;
    margin-bottom: 30px; 
    width: 720px;
    height: 400px;
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  .left {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 50px;
    width: 300px;
    height: 400px;
  }
  h1 {
    margin: 0 0 20px 0;
    font-weight: 300;
    font-size: 28px;
  }
  #login-box .left p{
    margin-top: 30px;
  }
  input[type="text"],
  input[type="password"] {
    display: block;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 4px;
    width: 220px;
    height: 32px;
    border: none;
    border-bottom: 1px solid #AAA;
    font-weight: 400;
    font-size: 15px;
    transition: 0.2s ease;
  }
  
  input[type="text"]:focus,
  input[type="password"]:focus {
    border-bottom: 2px solid #16a085;
    color: #16a085;
    transition: 0.2s ease;
  }
  
  input[type="submit"] {
    margin-top: 28px;
    width: 120px;
    height: 32px;
    background: #16a085;
    border: none;
    border-radius: 2px;
    color: #FFF;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.1s ease;
    cursor: pointer;
  }
  
  input[type="submit"]:hover,
  input[type="submit"]:focus {
    opacity: 0.8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: 0.1s ease;
  }
  
  input[type="submit"]:active {
    opacity: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transition: 0.1s ease;
  }
  
  .or {
    position: absolute;
    top: 180px;
    left: 320px;
    width: 40px;
    height: 40px;
    background: rgb(245, 245, 245);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 40px;
    text-align: center;
  }
  
  .right {
    top: 20px;
    position: absolute;
    right: 0;
    box-sizing: border-box;
    padding: 0px;
    width: 300px;
    height: 900px;
    background-size: cover;
    background-position: center;
    border-radius: 0 2px 2px 0;
    text-align: center;
    height: 400px;
  }
  
  .right .loginwith {
    display: block;
    left: 0;
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
}
button.social-signin {
    left:0;
    margin-bottom: 20px;
    width: 260px;
    height: 60px;
    border: none;
    border-radius: 2px;
    color: #FFF;
    font-size: 12px;
    transition: 0.2s ease;
    cursor: pointer;
  }

  button.social-signin:hover,
  button.social-signin:focus {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: 0.2s ease;
  }
  button.social-signin:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    transition: 0.2s ease;
  }
  button.social-signin.facebook {
    background: #32508E;
  } 
  button.social-signin.twitter {
    background: #55ACEE;
  }
  button.social-signin.google {
    background: #DD4B39;
  }

  .content{
    text-align: center;
  }
  
.sign_up p{
  cursor: pointer;
  text-align: center;
  margin-bottom: 50px;
}

.hidden{
	display: none!important;
}
