.login-signup-page {
  background-image: url('/static/images/signup_and_login_background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: block;
  box-sizing: border-box;
}

/* Delete warning box */
.delete-warning-box {
  background: rgba(198, 40, 40, 0.15);
  border: 1px solid rgba(198, 40, 40, 0.45);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #3b1f1f;
  text-align: left;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.delete-warning-box p {
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.danger-button {
  background: #c62828;
  border: none;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

.danger-button:hover {
  filter: brightness(0.95);
}

.delete-account-bottom {
  margin-top: 12px;
  font-size: clamp(13px, 1.5vw, 16px);
}

.delete-account-bottom a {
  color: #1976d2;
  text-decoration: none;
}

.delete-account-bottom a:hover {
  text-decoration: underline;
}