/* Auth Pages Styles */
.auth-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.auth-header h1 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-secondary);
}

.auth-tabs {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.auth-tab.active {
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

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

.form-group label {
  margin-bottom: 0.5rem;
  display: block;
}

.role-selector {
  display: flex;
  margin-bottom: 1.5rem;
}

.role-option {
  flex: 1;
  text-align: center;
  padding: 1rem;
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.role-option:first-child {
  margin-right: 0.5rem;
}

.role-option:last-child {
  margin-left: 0.5rem;
}

.role-option.active {
  border-color: var(--primary-color);
  background-color: rgba(233, 30, 99, 0.1);
}

.role-option .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.upload-area {
  border: 2px dashed var(--border-color);
  padding: 1.5rem;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-area:hover {
  border-color: var(--primary-color);
}

.upload-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 1rem auto;
  background-color: var(--border-color);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-input {
  display: none;
}

.auth-footer {
  text-align: center;
  margin-top: 1rem;
}

.auth-btn {
  background-color:#e91e63;
  width: 100%;
  padding: 0.75rem;
}

/* Animation for tab switching */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.3s ease forwards;
}