
/* =========================================
   AUTH MODAL STYLES (ADDED)
   ========================================= */

.auth-modal {
  background: #050505 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
  margin: auto;
  position: relative;
  z-index: 101;
  max-width: 400px;
  width: calc(100% - 32px);
}

.auth-modal input.form-control {
  background: #141414 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-size: 14px;
  padding: 12px 16px;
  transition: all 0.2s ease;
}

.auth-modal input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.auth-modal input.form-control:focus {
  background: #1a1a1a !important;
  border-color: #a800ff !important;
  box-shadow: 0 0 0 4px rgba(168, 0, 255, 0.15) !important;
  outline: none;
}

.auth-modal .btn-primary {
  background: #a800ff !important;
  border: none !important;
  border-radius: 50px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(168, 0, 255, 0.4);
}

.auth-modal .btn-primary:hover,
.auth-modal .btn-primary:focus {
  background: #b000ff !important;
  box-shadow: 0 0 25px rgba(168, 0, 255, 0.6) !important;
  transform: translateY(-1px);
}

.auth-modal .btn-primary:active {
  transform: translateY(0);
}

.auth-modal #switchBtn {
  color: #a800ff !important;
  transition: color 0.2s ease;
}

.auth-modal #switchBtn:hover {
  color: #b000ff !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.auth-modal-header .close {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.auth-modal-header .close:hover {
    opacity: 1;
}
