@charset "UTF-8";
/* Variables */
:root {
  --groomit-black: #2E2E2E;
  --groomit-gray: #7C868A;
  --groomit-border: #BEC3C5;
  --groomit-input-bg: #FBFBFB;
  --groomit-dark-blue: #3064A3;
  --groomit-error-color: #EB5757;
  --groomit-red: #FF314A;
  --groomit-light-gray: #E4E4E4;
  --groomit-F2F2F2: #F2F2F2;
  --groomit-recurring: #0A7170;
  --groomit-green: #28B446;
}

/*** Utilities ***/
.mt-10 {
  margin-top: 1rem;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-20 {
  margin-top: 2rem;
}

.mt-30 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mr-05 {
  margin-right: 0.5rem;
}

.p-15 {
  padding: 1.5rem;
}

.pt-05 {
  padding-top: 0.5rem;
}

.pt-10 {
  padding-top: 1rem;
}

.pt-15 {
  padding-top: 1.5rem;
}

.pb-10 {
  padding-bottom: 1rem;
}

.pb-15 {
  padding-bottom: 1.5rem;
}

.pb-25 {
  padding-bottom: 2.5rem;
}

.pb-110 {
  padding-bottom: 110px;
}

.pr-15 {
  padding-right: 1.5rem;
}

.pl-0 {
  padding-left: 0;
}

/***  Custom classes ****/
.text-justify {
  text-align: justify;
}

.input-bg {
  background: var(--groomit-input-bg);
}

.input-bg.disabled {
  background: var(--groomit-F2F2F2) !important;
  opacity: 1;
  border: 0px !important;
}

.border-color {
  border-color: var(--groomit-light-gray) !important;
}

.border-new-color {
  border-color: var(--groomit-border) !important;
}

.button-black,
.groomit__button,
.groomit__button:hover {
  height: 50px;
  background: var(--groomit-black);
  color: #fff;
  border: 0px;
  border-radius: 10px;
}

.main__button:hover {
  background-color: var(--groomit-black);
}

.button-border {
  height: 50px;
  border: 1px solid var(--groomit-black);
  border-radius: 10px;
}

.small-container {
  width: 390px;
  margin: auto;
}

.rounded-15 {
  border-radius: 15px;
}

/** Floating **/
.form-group {
  width: 100%;
}

/* Optional arrow icon */
.form-group-select::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 26px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #777;
  font-size: 14px;
}

.input-control {
  width: 100%;
  padding: 25px 10px 10px 15px;
  height: 57px;
  font-size: 16px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input-control:focus-visible {
  outline: 0px !important;
}

.floating-label {
  position: absolute;
  top: 18px;
  left: 15px;
  color: var(--groomit-gray) !important;
  font-size: 14px;
  transition: 0.2s ease all;
  pointer-events: none;
  padding: 0 0px;
}

/* When input is focused or not empty */
.input-control:not(:-moz-placeholder) + label {
  top: 7px;
  left: 15px;
  font-size: 12px;
}
.input-control:focus + label,
.input-control:not(:placeholder-shown) + label {
  top: 7px;
  left: 15px;
  font-size: 12px;
}

.error-color {
  color: var(--groomit-error-color);
}

.border-color.error-border {
  border-color: var(--groomit-error-color) !important;
}

.line-container-100 {
  width: 100px;
  margin: 20px auto;
}

.line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--groomit-light-gray);
}

.grid-template-2 {
  grid-template-columns: 1fr 1fr;
}

.button-small {
  height: 4.5rem;
  border: 1px solid var(--groomit-gray);
  border-radius: 1rem;
}

.button-small.selected {
  border: 2px solid var(--groomit-red) !important;
  font-weight: bold;
  box-shadow: 0px 0px 7px 0px rgba(132, 132, 132, 0.75);
}

.error-border {
  border: 1px solid var(--groomit-error-color) !important;
}

.bottom-button {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.dark-blue {
  color: var(--groomit-dark-blue);
}

@media screen and (max-width: 768px) {
  .small-container {
    width: 90%;
    margin: auto;
  }
}/*# sourceMappingURL=login-signup.css.map */