/* Authentication pages styles */
body {
  background-color: #f8f9fa;
}

.container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.card {
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-title {
  font-weight: 600;
}

.input-group-text {
  background-color: #f8f9fa;
}

.btn-primary {
  font-weight: 500;
}

.alert {
  border-radius: 0.25rem;
}

/* Styles for avatar initials */
.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-initials {
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Animation for the card on load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.card {
  animation: fadeInUp 0.5s ease;
}

.text-primary {
  color: #0d6efd !important;
}

/* For tablets and mobile */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
} 