*{
  box-sizing: border-box;
  margin:0;
  padding:0;
}

a{
  color: var(--button-primary);
  text-decoration: none;
}

body{
  --background: #FAFAFA;
  --white: #ffffff;
  --black: #000000;
  --button-primary: #0095f6;
  --border-primary: #e6e6e6;

  background: var(--background);
  height: 100%;
  width: 100%;
  margin:0;
  padding:0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

#wrapper{
  height: 100vh;
}

#container{
  margin: 0 auto;
  min-height: 100%;
  width: 800px;
  display: flex;
  align-items: center;
}

.column{
  flex-grow: 1;
  width: 50%;
}

.left{
  background-image: url("assets/main-foto.png");
  background-size: 450px;
  background-repeat: no-repeat;
  background-position: center;
  height: 600px;
  margin-bottom: 50px;
}

.right{
  padding-left: 20px;
}

.login-panel{
  background-color: var(--white);
  border: 1px solid var(--border-primary);
  text-align: center;
  padding: 20px 0;
}

.logo-img{
  width: 175px;
}

form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

input[type="password"], input[type="text"]{
  background-color: var(--white);
  border: 1px solid var(--border-primary);
  height: 40px;
  border-radius: 4px;
  margin-top: 10px;
  padding: 10px;
  font-size: 13px;
  width: 320px;
  color: #000000;
}

input[type="password"]::placeholder, input[type="text"]::placeholder{
  color: rgb(165, 164, 164);
}

input[type="password"]:focus, input[type="text"]:focus{
  outline: 0;
  border: 1px solid var(--border-primary);
}

input[type="submit"]{
  width: 320px;
  margin-top: 10px;
  height: 30px;
  border:0;
  background-color: #3c96ed;
  border-radius: 4px;
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}

.infobox{
  background-color: var(--white);
  height: 60px;
  border: 1px solid var(--border-primary);
  margin: 10px auto 0; 

  display: flex;
  justify-content: center;
  align-items: center;
}

.infobox p {
  user-select: none;
}

.infobox p a{
  font-weight: bold;
  user-select: none;
}

.get-app-panel{
  margin-top: 20px;
  text-align: center;
}

.app-buttons{
  margin-top: 16px;
}

.app-buttons img{
  height: 40px;
  padding: 0 2px;
}

footer{
  text-align: center;
  height: 50px;
  margin-top: -50px;
}

footer a{
  color:var(--black);
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 8px;
}

.text-small{
  font-size: 12px;
  font-weight: bold;
  color: grey;
  text-transform: uppercase;
  padding-left: 20px;
  display: inline-block;
}

/* PAGINA SIGNUP */
#container-signup{
  margin: 0 auto;
  min-height: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
}

.message{
  margin: 10px 70px;
}

.message span{
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  line-height: 20px;
  color: #8e8e8e;
}

.cta-button{
  width: 320px;
  margin: 10px 0;
  height: 35px;
  background-color: var(--button-primary);
  color: var(--white);
  border:0;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
}

.divisor-container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.line{
  height: 1px;
  background-color: var(--border-primary);
  width: 35%;
}

.divisor-tag{
  font-weight: bold;
  margin: 0 2.5%;
  color: #8e8e8e;
  user-select: none;
}
/* FIM PAGINA SIGNUP */

/* RESPONSIVIDADE */
@media (max-width: 850px){
  .left{
    display: none;
  }

  #container{
    width: 70%;
  }

  .right{
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  #container{
    width: 90%;
  }

  #container-signup{
    width: 90%;
  }

  input[type="password"], input[type="text"], input[type="submit"]{
    width: 85%;
  }

  .cta-button{
    width: 85%;
  }

  .message{
    margin: 10px 25px;
  }
}