﻿/* .form-groups {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem auto 4rem auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 20rem;
}

.form-label {
  color: var(--color-gray-700, #344054);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
} */

/* .teacher-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
} */

/* .teacher-card {
  flex-direction: column;
} */

/* .teacher-card > .bg-white.border-radius-2 {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.teacher-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

.teacher-card-header img {
  width: 6rem;
  height: 6rem;
  border-radius: 4rem;
}

.teacher-card-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: end;
}

.badge-city {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--color-blue-secondary-50, #ecf4ff);
}

.badge-city-text {
  color: var(--color-blue-secondary-500, #0f62fe);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.badge-country {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--color-red-primary-50, #fff3f3);
}

.badge-country-text {
  color: var(--color-red-primary-500, #da1e28);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.teacher-card-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.teacher-card-title h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  text-align: start;

}

.teacher-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.teacher-card-body-title {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.teacher-card-body-title-text {
  color: var(--color-gray-500, #667085);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
}

.teacher-card-body p {
  margin-top: 0.5rem;
}

.teacher-card-actions {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.teacher-card-actions button {
  display: inline-flex;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.teacher-card-actions span {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: var(--color-base-white, #fff);
  color: #da1e28;
  font-size: 1rem;
  font-weight: 600;
}

.teacher-card-actions img {
  display: flex;
  width: 24px;
  height: 24px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  background: var(--color-base-white, #fff);
}

@media (min-width: 768px) {
  .teacher-cards {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .teacher-card-actions {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .teacher-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1216px;
    margin: 0 auto;
  }
} */
