@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

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

a {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  font-size: 14px;
}

.box {
  max-width: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffff;
  border: 1px solid #e6e6e6;
  border-radius: 1px;
  margin: 0 0 10px;
  padding: 10px 0;
  flex-grow: 1;
}
.box .heading {
  margin: 22px auto 12px;
  background-image: url("https://www.instagram.com/static/bundles/es6/sprite_core_b20f2a3cd7e4.png/b20f2a3cd7e4.png");
  background-position: -98px 0;
  height: 51px;
  width: 177px;
  overflow: hidden;
}
.box .login-form ::-moz-placeholder {
  color: transparent;
}
.box .field {
  margin: 10px 0;
  position: relative;
  font-size: 14px;
  width: 100%;
  text-overflow: ellipsis;
}
.box input {
  padding: 9px 0px 7px 9px;
  font-size: 12px;
  width: 16rem;
  height: 1.2rem;
  outline: none;
  background: #fafafa;
  border-radius: 3px;
  border: 1px solid #efefef;
}
.box input::placeholder {
  visibility: hidden;
}
.box input:not(:placeholder-shown) + label {
  transform: translateY(0);
  font-size: 11px;
}
.box input:not(:placeholder-shown) {
  padding-top: 14px;
  padding-bottom: 2px;
}
.box label {
  position: absolute;
  pointer-events: none;
  left: 10px;
  padding-bottom: 15px;
  transform: translateY(10px);
  line-height: 6px;
  transition: all ease-out 0.1s;
  font-size: 14px;
  color: #999;
  padding-top: 6px;
}
.box .login-button {
  text-align: center;
  width: 100%;
  padding: 0.5rem 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #3897f0;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.box .separator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  margin-top: 6px;
}
.box .separator .line {
  height: 1px;
  width: 40%;
  background-color: #dbdbdb;
}
.box .other {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.box .other .fb-login-btn {
  margin: 1rem;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: #385185;
  font-weight: 700;
  background: transparent;
}
.box .other .fb-icon {
  color: #385185;
  font-size: 1rem;
  padding-right: 1px;
}
.box .other .forgot-password {
  font-size: 12px;
  color: #003569;
}
.box .signup {
  color: #3897f0;
  font-weight: 600;
}