@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/hpp/img/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: 95%;
}

.label::after {
  content: "*";
  color: red;
  margin-left: 4px;
}
.h-100{
  height:100px;
}

.required {
  color: red;
  margin-left: 4px;
}

.method-card.selected {
  border: 2px solid #1757d9;
  color: #1757d9;
}
.btn-primary:disabled{
  background-color: #c5d0cc !important;
  cursor: not-allowed;
}
.start_date:read-only{
  background-color: #eff2f1 !important;
  cursor: not-allowed;
}
.input-error {
  border:1px solid #e93143 !important;
}
.helper-text {
  color: #e93143;
  font-size: 12px;
 
  display: block;
}
.error{
color: #e93143;

}

.bg-red{
  background-color: #e93143;
}

.stroke-opacity-1 {
  stroke-opacity: 1;
}

.loader {
  animation: spin 1s linear infinite; /* Spin animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
