/* From landing */
body {
  background-color: #f9fafb;
  font-family: 'Inter', sans-serif;
}

.navbar {
  background: white !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  /* color: #6b7280; */
  margin-top: 15px;
}

.btn-primary {
  background-color: #6366f1;
  border: none;
}

.btn-primary:hover {
  background-color: #4f46e5;
}

.profiles {
  padding: 60px 0;
}

.profile-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}


/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/*  
.invalid-feedback doesn't show for .input-group with an invalid control 
https://github.com/twbs/bootstrap/issues/23454#issuecomment-323225871
*/
.invalid-feedback {
  display: block;
}

.letter-circle {
  display: inline-block;
  background-color: #800000;
  color: #fff;
  border-radius: 50%;
  font-size: 100px;
  line-height: 150px;
  /* set to same size as width, height */
  width: 150px;
  height: 150px;
  text-align: center;
}

.avatar-wrapper {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-wrapper-sm {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrapper-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-gradient {
  background-image: linear-gradient(to top, #c4c5c7 0%, #dcdddf 52%, #ebebeb 100%) !important;
}

.bl-btn-primary {
  background: linear-gradient(to right, #185a9d 0%, #43cea2 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 0;
  width: 100%;
  margin-top: 24px;
  transition: background 0.2s;
}

.bl-btn-primary:hover {
  opacity: 0.95;
}
