/* Auth Forms Styles */
.auth-container {
  max-width: 500px;
  margin: 10rem auto 5rem;
  padding: 2rem;
  background-color: rgba(26, 15, 46, 0.8);
  border-radius: 10px;
  border: 1px solid #E5D1A4;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  color: #E5D1A4;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: #F0E6D2;
}

.auth-form {
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #F0E6D2;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background-color: rgba(26, 15, 46, 0.8);
  border: 1px solid #E5D1A4;
  border-radius: 5px;
  padding: 0.8rem;
  color: #f5f5f5;
  font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #F0E6D2;
  box-shadow: 0 0 5px rgba(229, 209, 164, 0.5);
}

.auth-btn {
  width: 100%;
  background-color: #2D1B4E;
  color: #E5D1A4;
  border: 1px solid #E5D1A4;
  border-radius: 5px;
  padding: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.auth-btn:hover {
  background-color: #E5D1A4;
  color: #2D1B4E;
}

.auth-links {
  text-align: center;
  margin-top: 1.5rem;
  color: #F0E6D2;
}

.auth-links a {
  color: #E5D1A4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.auth-links a:hover {
  text-decoration: underline;
}

.alert {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 1rem;
  border-radius: 5px;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.alert-error {
  background-color: rgba(220, 53, 69, 0.9);
  color: white;
  border-left: 4px solid #721c24;
}

.alert-success {
  background-color: rgba(40, 167, 69, 0.9);
  color: white;
  border-left: 4px solid #155724;
}

.alert-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive styles */
@media (max-width: 768px) {
  .auth-container {
    margin: 6rem 1rem 3rem;
    padding: 1.5rem;
  }
}