.signup-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.signup-modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.signup-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-signup-modal {
  cursor: pointer;
  font-size: 24px;
}

.signup-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.28px;
  color: #18181b;
}

.signup-modal-header img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.form-field-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 10px;
  width: 400px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group .label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #18181b;
}
.input-field-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  border: 1px solid #e4e4e7;
  padding: 10px;
}

.input-field-wrapper figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.input-field-wrapper input {
  border: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.07px;
  color: #18181b;
  width: 100%;
}

.input-field-wrapper input::placeholder {
  color: #71717a;
}

.input-field-wrapper input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.form-field-container .flex-btn-primary {
  margin-top: 1rem;
}

.form-field-container .sign-up-text {
  color: #3f3f46;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.06px;
  cursor: pointer;
  margin: 2rem 0;
  text-align: center;
}

.auth-toggle-link {
  color: #6c5ce7;
  cursor: pointer;
  font-weight: 600;
}

.auth-toggle-link:hover {
  text-decoration: underline;
}

.auth-error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .signup-modal-content {
    width: 100%;
    margin: 0 16px;
  }

  .form-field-container {
    width: 100%;
  }
}
