body.sign-in-page,
body.sign-up-page {
  background-image: radial-gradient(ellipse at 50% 0%, rgba(176, 38, 255, 0.12) 0%, transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
}

.main-wrapper {
  padding-top: 48px;
}

.sign-in-title {
  font-size: 28px;
  font-weight: 600;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 1rem;
}

.sign-in-button {
  background-color: #a020f0;
  border-radius: 8px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.sign-in-button:hover {
  background-color: #8b18d4;
}

.button-secondary {
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.button-secondary:hover {
  background-color: rgba(176, 38, 255, 0.1);
  color: #B026FF;
}

.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .sign-in-input {
  padding-right: 60px;
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: none;
  border: none;
  color: #B5B5B5;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.toggle-password:hover {
  color: #fff;
}

.agree-to-terms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  color: #D4D4D4;
}

.agree-to-terms input[type="checkbox"] {
  accent-color: #B026FF;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.terms-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.terms-body p {
  font-size: 14px;
  font-weight: 300;
  color: #D4D4D4;
  line-height: 1.6;
  margin: 0;
}