.content-login {
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 24px 24px;
  overflow-y: auto;
  overflow-x: hidden;
}

.login-wrap {
  width: 100%;
  min-height: 100%;
  background: #000;
  border-radius: 28px;
  position: relative;
}

.topbar-login .login-page-title span {
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.login-panel {
  min-height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 66px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.login-subscribe-chip {
  margin-bottom: 40px;
}

.login-box {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo {
  margin-bottom: 30px;
}

.login-logo img {
  width: 94px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.login-box h1 {
  margin: 0 0 18px;
  color: #fff;
  text-align: center;
  font-family: Outfit, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.login-form {
  width: 100%;
}

.login-field {
  margin-bottom: 14px;
}

.login-field label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.login-field input {
  width: 100%;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 0 14px;
  outline: none;
  box-sizing: border-box;
}

.login-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 46px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 8px 0 18px;
}

.remember-me {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Outfit, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
}

.remember-me input {
  width: 10px;
  height: 10px;
  accent-color: #008CFF;
  margin: 0;
}

.forgot-password {
  color: rgba(255, 255, 255, 0.82);
  font-family: Outfit, Arial, sans-serif;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-submit {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 0;
    color: #fff;
    font-family: Outfit, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    background: linear-gradient(90deg, #FF0F3A 0%, #5B45E0 100%);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 25px 0 25px;
}

.login-divider span {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.login-divider p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-btn {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  border: 0;
  background: #24272B;
  color: #fff;
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.social-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.google-icon {
  color: #4285F4;
  background: transparent;
  font-size: 24px;
  font-weight: 600;
  width: auto;
  height: auto;
}

.facebook-icon {
  background: #1D9BF0;
  color: #fff;
  font-family: Arial, sans-serif;
}

.login-footer-note {
  margin-top: auto;
  padding-top: 70px;
  text-align: center;
  color: rgba(255, 255, 255, 0.54);
  font-family: Outfit, Arial, sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
}

.login-footer-note a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-login-link {
  margin-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.login-login-link a {
  color: #FF0F3A;
  text-decoration: none;
  font-weight: 500;
}


.login-help {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.login-help svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1100px) {
  .content-login {
    padding: 0;
  }

  .login-wrap {
    border-radius: 0;
  }

  .login-panel {
    padding: 26px 16px 20px;
  }

  .login-footer-note {
    padding-top: 50px;
  }

  .login-help {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 767px) {
  .login-panel {
    padding: 26px 14px 18px;
  }

  .login-subscribe-chip {
    margin-bottom: 28px;
  }

  .login-box {
    max-width: 100%;
  }

  .login-box h1 {
    font-size: 24px;
  }

  .login-options {
    flex-direction: row;
    align-items: flex-start;
  }

  .login-footer-note {
    font-size: 12px;
    padding-top: 40px;
    padding-right: 40px;
    padding-left: 4px;
  }

  .login-login-link {
    font-size: 13px;
  }
}