.form-container {
  /* max-width: 400px; */
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 16px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
  border: 1px solid #ddd;
}
.form-control:focus {
  outline: none; /* Remove the default outline */
  border-color: wheat; /* Change the border color to golden */
  box-shadow: 0 0 0 0.2rem rgba(175, 135, 0, 0.25); /* Add a golden glow effect */
}

.icon-circle {
  width: 48px;
  height: 48px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.google-btn {
  border: 1px solid #dee2e6;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.signup-button {
  background-color: #7c83fd;
  border: none;
}

.signup-button:hover {
  background-color: #6268fd;
}

.divider {
  margin: 1rem 0;
  text-align: center;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background-color: transparent;
  border-top: 1px dashed #dee2e6; /* Added dashed border */
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.name-row {
  display: flex;
  gap: 1rem;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-container {
  max-width: 400px;
  width: 100%;
}

/* Mobile Number Input */
.intl-tel-input,
.iti {
  width: 100%;
}
