* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background-color: #fafafa;
  color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  display: flex;
  max-width: 935px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: none;
}

.phone-mockup {
  position: relative;
  height: 618px;
  width: 454px;
  background: url("https://www.instagram.com/static/images/homepage/phones/home-phones.png/1dc085cdb87d.png")
    no-repeat center;
  background-size: 454px 618px;
}

.carousel {
  position: absolute;
  height: 538px;
  width: 250px;
  top: 27px;
  left: 151px;
  overflow: hidden;
}

.carousel img {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: auto;
  transition: opacity 1.5s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

.login-container {
  max-width: 350px;
  width: 100%;
}

.login-box {
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 1px;
  padding: 20px 40px;
  text-align: center;
  margin-bottom: 10px;
}

.logo {
  margin: 22px auto 12px;
  width: 175px;
}

.form-container {
  margin-top: 24px;
}

.input-field {
  background: #fafafa;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  color: #262626;
  font-size: 12px;
  height: 36px;
  margin-bottom: 6px;
  padding: 9px 8px 7px;
  width: 100%;
  outline: none;
}

.input-field:focus {
  border-color: #a8a8a8;
}

.login-button {
  background: #0095f6;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  padding: 7px 16px;
  width: 100%;
  cursor: pointer;
  height: 36px;
}

.login-button:disabled {
  background: #b2dffc;
  cursor: default;
}

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

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dbdbdb;
}

.divider span {
  margin: 0 18px;
}

.fb-login {
  color: #385185;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  font-size: 14px;
}

.fb-icon {
  margin-right: 6px;
  width: 16px;
  height: 16px;
}

.forgot-pw {
  color: #00376b;
  font-size: 12px;
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
}

.signup-box {
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 1px;
  padding: 25px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}

.signup-box a {
  color: #0095f6;
  font-weight: 600;
  text-decoration: none;
}

.app-download {
  text-align: center;
}

.app-download p {
  margin-bottom: 20px;
  font-size: 14px;
}

.download-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.download-badges img {
  height: 40px;
}

footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  color: #8e8e8e;
  font-size: 12px;
}

footer nav a {
  color: #8e8e8e;
  text-decoration: none;
  margin: 0 8px;
}

@media (min-width: 876px) {
  .phone-container {
    display: flex;
  }
}
