body, .login-page-body {
  font-family: 'Open Sans', sans-serif;
  color: white;
  background-color: black;
  margin: 0;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  box-sizing: border-box;
}

.login-page {
  background-color: #0B0B2E;
  color: white;
  padding: 30px 40px 15px 40px;
  width: 450px;
  max-width: 90%;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: center;
}

.signup {
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
  color: white;
}

form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
}

input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
}

.password-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.password-wrapper input {
  padding-right: 42px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  z-index: 5;
}

button[type="submit"] {
  width: 100%;
  margin-top: 25px;
  margin-bottom: 15px;
  padding: 12px;
  cursor: pointer;
  font-size: 17px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  /* Added transform to the transition list for smoothness */
  transition: background 0.2s, transform 0.1s;
  outline: none;
}

button[type="submit"]:hover {
  background-color: #2980b9;
}

/* ✅ NEW: Clicking Effect */
button[type="submit"]:active {
  background-color: #1c5980; /* Darker blue when clicked */
  transform: scale(0.98);    /* Slight shrink effect */
}

.cf-turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

.error-message {
  color: #ff4d4d;
  font-size: 0.85em;
  display: none;
  margin-top: 10px;
  text-align: center;
}