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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
}

.page {
  display: flex;
  min-height: 90vh;
}

.left-side {
  flex: 1 1 58%;
  background: #000;
  display: flex;
  align-items: center;
  padding: 60px 80px;
}

.left-inner {
  max-width: 620px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-logo {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px 0 24px;
  border-bottom: 1px solid #262626;
}

.mobile-logo-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.right-side {
  flex: 1 1 42%;
  background: #000;
  border-left: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.right-inner {
  width: 100%;
  max-width: 380px;
}

.login-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.input-group {
  margin-bottom: 16px;
}

.input-group input {
  width: 100%;
  background: #000;
  border: 1px solid #363636;
  border-radius: 8px;
  padding: 14px 12px;
  font-size: 14px;
  color: #fff;
  outline: none;
}

.input-group input::placeholder {
  color: #8e8e8e;
}

.input-group input:focus {
  border-color: #737373;
}

.form-status {
  min-height: 20px;
  margin: 0 0 12px;
  font-size: 13px;
  color: #4da3ff;
  text-align: center;
}

.login-btn {
  width: 100%;
  padding: 12px 0;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
}

.login-btn:hover {
  background: #0b5ed7;
}

.forgot-link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 24px;
}

.forgot-link:hover {
  text-decoration: underline;
}

.fb-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #363636;
  border-radius: 8px;
  padding: 12px 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
}

.create-account-btn {
  display: block;
  text-align: center;
  border: 1px solid #0d6efd;
  border-radius: 8px;
  padding: 12px 0;
  color: #4da3ff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 40px;
}

.email-group {
  display: none;
}

.email-group.active {
  display: block;
}

.meta-logo {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.meta-infinity {
  font-weight: 700;
  margin-right: 4px;
}

footer {
  padding: 30px 80px 40px;
  background: #000;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 16px;
}

footer nav a {
  color: #a8a8a8;
  font-size: 12px;
  text-decoration: none;
}

footer nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: #a8a8a8;
}

.footer-bottom select {
  background: transparent;
  border: none;
  color: #a8a8a8;
  font-size: 12px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }
  .right-side {
    border-left: none;
    border-top: 1px solid #262626;
  }
  .left-side {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .left-side {
    display: none;
  }

  .mobile-logo {
    display: flex;
  }

  .right-side {
    border-top: none;
    padding: 0 24px 40px;
  }

  .right-inner {
    max-width: 420px;
  }

  .login-heading {
    font-size: 20px;
    margin: 28px 0 20px;
  }

  .input-group input {
    padding: 18px 16px;
    border-radius: 30px;
    font-size: 15px;
  }

  .login-btn {
    padding: 16px 0;
    border-radius: 30px;
    font-size: 15px;
  }

  .fb-login {
    padding: 16px 0;
    border-radius: 30px;
    font-size: 15px;
  }

  .create-account-btn {
    padding: 16px 0;
    border-radius: 30px;
    font-size: 15px;
  }

  .forgot-link {
    margin: 20px 0 40px;
  }
}
