.login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.login-modal.hidden {
  opacity: 0;
  pointer-events: none;
}



.login-logo {
  width: 120px;
  margin-bottom: 12px;
}

.login-button {
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  background: #ff6a3d;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.login-button:hover {
  background: #ff4f1e;
}

.login-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Row for the two buttons */
.login-modal-content .login-btn-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}

/* Make both buttons equal width */
.login-modal-content .login-btn-row button {
  flex: 1;
}

.login-secondary-button {
  margin-top: 16px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  background: #ff6a3d;   /* same orange */
  color: #fff;           /* same text color */
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.login-secondary-button:hover {
  background: #ff4f1e;   /* same hover color */

}

.login-modal-content {
  position: relative;
  z-index: 10;
}

.blur-bg {
  z-index: 1;
}


.login-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers EVERYTHING inside */
}

.login-modal-content .login-btn-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.login-modal-content .login-btn-row button {
  flex: 1;
}

.login-modal-content h2,
.login-modal-content p {
  color: white !important;
}



