body {
  background: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: sans-serif;
}

.container {
  width: 300px;
  background: white;
  border: 1px solid #dbdbdb;
  padding: 40px 30px;
  text-align: center;
  border-radius: 5px;
}

.insta_logo {
  width: 160px;
  margin-bottom: 25px;
}

.email {
  width: 100%;
  padding: 9px;
  background: #fafafa;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  margin-bottom: 10px;
  font-size: 12px;
}

.email:focus {
  outline: none;
  border-color: #aaa;
}

::placeholder {
  color: #a8a8a8;
  font-size: 12px;
}

.login-btn {
  width: 100%;
  padding: 8px;
  background: #0095f6;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.login-btn:hover {
  background: #1877f2;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #8e8e8e;
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #dbdbdb;
}

.divider:not(:empty)::before {
  margin-right: 10px;
}

.divider:not(:empty)::after {
  margin-left: 10px;
}

.facebook-login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 15px;
}

.facebook {
  width: 16px;
  height: 16px;
}

.fb {
  color: #385185;
  font-weight: bold;
  font-size: 13px;
}

.forgot {
  color: #00376b;
  font-size: 12px;
  margin-bottom: 20px;
  cursor: pointer;
}

.dont {
  font-size: 13px;
  color: #262626;
  margin-top: 10px;
  border: 1px solid #dbdbdb;
  padding: 15px 0;
}

.dont span {
  color: #0095f6;
  font-weight: bold;
  cursor: pointer;
}

.get {
  font-size: 14px;
  color: #262626;
  margin-top: 20px;
  margin-bottom: 10px;
}

.img img {
  width: 120px;
  margin: 0 5px;
}

@media (max-width: 400px) {
  .container {
    border: none;
    background: #fafafa;
    box-shadow: none;
  }
  .dont {
    border: none;
    background: #fafafa;
  }
}