/* --- Login Modal Styles --- */

#eventive-login-container {
  font-family: var(--font-family-base, Arial, sans-serif);
  margin: 20px;
  color: var(--text-color, #333);
}

#eventive-login-message {
  font-size: var(--font-size-base, 1rem);
  text-align: center;
}

#eventive-login-message a {
  color: var(--primary-color, #007bff);
  text-decoration: none;
  font-weight: 600;
}

#eventive-login-message a:hover {
  text-decoration: underline;
}

p.eventive-login-message{
    text-align: center;
}

.eventive-login-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInBackdrop 0.3s ease-out;
}

.eventive-login-form {
  background: #fff;
  padding: 24px;
  padding-bottom: 5px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: inherit;
    border: 2px solid #444;
}

.eventive-login-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 0.9rem;
}

.eventive-login-form input[type="text"],
.eventive-login-form input[type="password"] {
  padding: 10px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.eventive-login-form input:focus {
  border-color: var(--primary-color, #007bff);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.eventive-login-form .button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.eventive-login-form button {
  padding: 10px 16px;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--primary-color, #007bff);
  color: #fff;
  transition: background-color 0.3s ease;
}

.eventive-login-form button:hover {
  background-color: var(--hover-color, #0056b3);
}


.hidden {
  display: none !important;
}

#eventive-login-error {
  color: red;
  background-color: #fdd;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Modal Footer Styles --- */
.eventive-modal-footer {
    position: relative;
    bottom: 0;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 3px;
  border-top: 1px solid #444;
  font-family: var(--font-family-base);
  font-size: x-small;
}
.eventive-modal-footer img{
    max-width: 65px;
    margin-left: 10px;
}

.eventive-modal-footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.eventive-modal-footer a:hover {
  text-decoration: underline;
}

.eventive-footer-note {
  font-style: italic;
  margin-bottom: 3px;
}