* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
  background-color: #fafafa;
}

.main-container {
  display: flex;
  margin: 32px auto 0;
}

.banner-container,
.form-container {
  flex: 1 1 0;
  width: 50%;
}

.banner-container {
  text-align: right;
}

.banner-container img {
  margin-right: -15px;
}

.form-container {
  text-align: center;
}

.form-box,
.register-container {
  background-color: white;
  border: 1px solid #dbdbdb;
  width: 350px;
  margin-top: 30px;
}

.form-box .logo-instagram {
  width: 175px;
  height: 51px;
  margin: 30px auto 12px;
}

.form-box {
  background-color: #fff;
}

.login-form {
  margin-top: 20px;
}

.login-form input {
  display: block;
  font-size: 12px;
  padding: 12px 9px;
  background-color: #fafafa;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  width: 268px;
  margin: 5px auto;
}

.login-form input[type="submit"] {
  background-color: #b2dffc;
  color: #fff;
  margin-top: 15px;
  border-radius: 5px;
  height: 30px;
  border-color: #b2dffc;
  font-size: 13px;
  padding: 0;
  font-weight: bold;
  cursor: pointer;
}

.login-form input[type="submit"]:hover {
  background-color: #0195f6;
}

.separator {
  position: relative;
}

.separator .line {
  border-top: 1px solid #dbdbdb;
  width: 268px;
  margin: 25px auto 35px;
}

.separator span {
  position: absolute;
  text-transform: uppercase;
  color: #bbb;
  width: 50px;
  top: -6px;
  left: 50%;
  margin-left: -25px;
  font-size: 14px;
  font-weight: bold;
}

.facebook-login {
  margin-bottom: 25px;
}

.facebook-login a {
  text-decoration: none;
  color: #385185;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facebook-login img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.facebook-login span {
  font-weight: 600;
  font-size: 14px;
  margin-top: 1px;
}

.forgot-paswword {
  margin-bottom: 20px;
  font-size: 12px;
}

.forgot-paswword a {
  text-decoration: none;
  color: #00376b;
}

.register-container {
  margin-top: 10px;
  padding: 25px;
}

.register-container p {
  font-size: 14px;
  color: #262626;
}

.register-container a {
  color: #0095f6;
  font-weight: bold;
  text-decoration: none;
}

.get-app-container {
  text-align: center;
  width: 350px;
}

.get-app-container p {
  color: #262626;
  margin: 20px 0;
  font-size: 14px;
}

.get-app-container a {
  text-decoration: none;
}

.get-app-container img {
  width: 136px;
  height: 40px;
}

footer {
  text-align: center;
  width: 65%;
  margin: 50px auto;
}

footer .footer-links {
  list-style: none;
}

footer .footer-links li {
  display: inline-block;
  text-transform: capitalize;
  margin-right: 10px;
}

footer .footer-links a {
  text-decoration: none;
  font-size: 12px;
  color: #8e8e8e;
}

.container-copyright {
  display: flex;
  justify-content: center;
  margin: 30px 0 60px;
  font-size: 12px;
}

.languages {
  outline: none;
  border: 0;
  font-size: 12px;
  color: #8e8e8e;
  margin-right: 15px;
}

.copyright {
  font-size: 12px;
  color: #8e8e8e;
}

input:focus,
select:focus {
  box-shadow: 0 0 0 0;
  border-color: #8e8e8e;
  outline: 0;
}

@media (max-width: 720px) {

  .form-box,
  .register-container {
    background-color: #fafafa;
  }

  .banner-container {
    display: none;
  }

  .main-container,
  .form-container {
    margin-top: 0;
  }

  .form-container,
  .form-box,
  .register-container,
  .get-app-container {
    width: 100%;
    border: none;
  }

  footer {
    width: 80%;
    text-align: center;
  }

  .footer-links li {
    margin-bottom: 5px;
  }
}