body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: "Cabin", sans-serif;
  font-size: 15px;
  font-weight: 300;
  height: 100%;
  min-height: 100vh;
}
body * {
  box-sizing: border-box !important;
}
body .auth-layout {
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
  padding: 10px;
}
body .auth-layout__form, body .auth-layout__content {
  position: relative;
  width: 50%;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body .auth-layout__form, body .auth-layout__content {
    padding: 1rem;
  }
}
body .auth-layout__form {
  background-color: #ffffff;
  color: #212529;
  align-items: flex-start !important;
}
body .auth-layout__form .logo {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  left: 0%;
  top: 0%;
}
@media (max-width: 768px) {
  body .auth-layout__form .logo {
    position: relative;
  }
}
body .auth-layout__form .logo img {
  max-height: 60px;
  height: 100%;
  width: auto;
}
body .auth-layout__form .form {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
body .auth-layout__form .header-form h1 {
  font-family: "Cabin";
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #002D72;
  margin: 0 0 10px 0;
}
body .auth-layout__form .header-form p {
  font-family: "Cabin";
  font-size: 16px;
  color: #6e6e6e;
  margin: 0;
  padding: 0;
}
body .auth-layout__form .header-form p b {
  color: #484848;
  font-weight: 700;
}
body .auth-layout__form .section-types {
  display: flex;
  align-items: start;
  justify-content: flex-start;
  margin-top: 20px;
}
body .auth-layout__form .section-types button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
  color: #212529;
  padding: 0px;
  margin-right: 25px;
  font-family: "Cabin";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}
body .auth-layout__form .section-types button.active {
  color: #C9A44C;
}
body .auth-layout__form .section-services {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
body .auth-layout__form .section-services .card {
  width: 150px;
  height: auto;
  padding: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f2f2;
  border-radius: 6px;
  cursor: pointer;
}
body .auth-layout__form .section-services .card.active {
  display: flex;
}
body .auth-layout__form .section-services .card img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  border: 2px solid #C9A44C;
}
body .auth-layout__form .section-services .card h3 {
  font-size: 14px;
  font-weight: 600;
}
body .auth-layout__form .fiche-section h3 {
  color: #C9A44C;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Cabin";
  font-weight: 600;
}
body .auth-layout__form .fiche-section .image-field {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
body .auth-layout__form .fiche-section .image-field img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  border: 2px solid #C9A44C;
}
body .auth-layout__form .fiche-section .d-data-flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 10px 0;
}
body .auth-layout__form .fiche-section .d-data-flex label {
  width: 180px;
  font-size: 14px;
  font-weight: 700;
  color: #212529;
}
body .auth-layout__form .fiche-section .d-data-flex .data {
  font-size: 14px;
  color: #6e6e6e;
}
body .auth-layout__content {
  background-color: #f2f2f2;
  border-radius: 12px;
  max-width: 900px;
}
body .auth-layout__content .copyright {
  position: absolute;
  left: 50%;
  bottom: 1%;
  transform: translate(-50%, -50%);
  font-family: "Cabin";
  font-size: 12px;
  font-weight: 900;
  color: #002D72;
}
body .auth-layout__content h4 {
  font-family: "Cabin";
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A44C;
  position: relative;
  display: inline-block;
  margin: 0 0 28px 0;
}
body .auth-layout__content h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #C9A44C;
  margin: 0.6rem 0;
  border-radius: 2px;
}
body .auth-layout__content h1 {
  font-family: "Cabin";
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #212529;
  margin: 0 0 28px 0;
}
body .auth-layout__content h1 span {
  color: #C9A44C;
  font-weight: 800;
}
body .auth-layout__content p {
  font-family: "Cabin";
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #212529;
  margin: 0;
  padding: 0;
}
@media (max-width: 924px) {
  body .auth-layout {
    flex-direction: column;
  }
  body .auth-layout__content {
    display: none;
  }
  body .auth-layout__form {
    width: 100%;
    min-height: 100vh;
  }
}

.alert.alert-danger {
  color: #dc3545;
  margin: 0px 0 10px 0;
}

.input-floating {
  position: relative;
  width: auto;
  margin-bottom: 10px;
}
.input-floating.ar i {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  right: inherit !important;
}
.input-floating.ar .input-floating input:valid ~ span,
.input-floating.ar .input-floating select:valid ~ span,
.input-floating.ar .input-floating select:focus ~ span,
.input-floating.ar .input-floating input:focus ~ span,
.input-floating.ar span {
  right: 0px !important;
  left: auto;
  transform: translateX(-7px) translateY(-7px) !important;
}
.input-floating.ar span {
  padding: 15px;
}
.input-floating.checkbox-input {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.input-floating.checkbox-input input {
  width: auto;
  border: 1px solid #adb5bd;
  background-color: white;
  margin-right: 5px;
}
.input-floating.checkbox-input label {
  font-size: 13px;
  font-weight: 400;
}
.input-floating input,
.input-floating select {
  height: 38px;
}
.input-floating input,
.input-floating select,
.input-floating textarea {
  width: 100%;
  padding: 0 10px;
  border: 1px solid #adb5bd;
  border-radius: 5px;
  outline: none;
  font-size: 13px;
  transition: 0.4s;
  background-color: #fff;
  color: #212529;
}
.input-floating textarea {
  padding: 10px;
  height: 60px;
}
.input-floating textarea::-moz-placeholder {
  font-size: 14px;
}
.input-floating textarea::placeholder {
  font-size: 14px;
}
.input-floating select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.input-floating select option {
  font-size: 15px;
}
.input-floating label {
  color: #adb5bd;
  letter-spacing: normal;
  font-weight: 500;
}
.input-floating span {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 10px;
  font-size: 14px;
  color: #adb5bd;
  pointer-events: none;
  transition: 0.4s;
}
.input-floating span.exception {
  color: #212529;
  transform: translateX(10px) translateY(-7px);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0 10px;
  background: white;
  letter-spacing: normal;
}
.input-floating i {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(50%, -50%);
  left: inherit;
  font-size: 20px;
  color: #adb5bd;
  transition: 0.3s ease;
}
.input-floating div#iconPassword {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(50%, -50%);
  left: inherit;
  font-size: 20px;
  color: #212529;
  transition: 0.3s ease;
}
.input-floating div#iconPassword.ar {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
  right: inherit !important;
}

.input-floating input:valid ~ span,
.input-floating select:valid ~ span,
.input-floating select:focus ~ span,
.input-floating textarea:valid ~ span,
.input-floating textarea:focus ~ span,
.input-floating input:focus ~ span {
  color: #212529;
  transform: translateX(10px) translateY(-7px);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0 10px;
  background: white;
  letter-spacing: normal;
}

.input-floating select:valid ~ i,
.input-floating select:focus ~ i,
.input-floating input:valid ~ i,
.input-floating input:focus ~ i,
.input-floating textarea:valid ~ i,
.input-floating textarea:focus ~ i {
  color: #212529;
  font-size: 21px;
}

.input-floating select:valid,
.input-floating select:focus,
.input-floating textarea:valid,
.input-floating textarea:focus,
.input-floating input:valid,
.input-floating input:focus {
  border: 1px solid #212529;
  color: #212529;
  background-color: white;
}

/* Grid System */
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 auto;
}
.row .col-1 {
  grid-column: span 1;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-1 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-2 {
  grid-column: span 2;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-2 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-3 {
  grid-column: span 3;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-3 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-4 {
  grid-column: span 4;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-4 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-5 {
  grid-column: span 5;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-5 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-6 {
  grid-column: span 6;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-6 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-7 {
  grid-column: span 7;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-7 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-8 {
  grid-column: span 8;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-8 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-9 {
  grid-column: span 9;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-9 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-10 {
  grid-column: span 10;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-10 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-11 {
  grid-column: span 11;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-11 {
    grid-column: span 12;
    padding: 0px;
  }
}
.row .col-12 {
  grid-column: span 12;
  padding: 2px;
  margin: 2px;
}
@media (max-width: 997px) {
  .row .col-12 {
    grid-column: span 12;
    padding: 0px;
  }
}

/* vietnamese */
@font-face {
  font-family: "Cabin";
  font-style: italic;
  font-weight: 400 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/cabin/v35/u-4g0qWljRw-Pd815fNqc8T_wAFcX-c37OnhHXi-Ag.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Cabin";
  font-style: italic;
  font-weight: 400 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/cabin/v35/u-4g0qWljRw-Pd815fNqc8T_wAFcX-c37OngHXi-Ag.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Cabin";
  font-style: italic;
  font-weight: 400 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/cabin/v35/u-4g0qWljRw-Pd815fNqc8T_wAFcX-c37OnuHXg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/cabin/v35/u-4i0qWljRw-PfU81xCKCpdpbgZJl6XvptnsBXw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/cabin/v35/u-4i0qWljRw-PfU81xCKCpdpbgZJl6Xvp9nsBXw.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/cabin/v35/u-4i0qWljRw-PfU81xCKCpdpbgZJl6Xvqdns.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.btn {
  font-family: "Cabin";
  position: relative;
  padding: 8px 18px;
  border: 1px solid #002D72;
  background-color: #002D72;
  display: inline-block;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  transition: 0.5s;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  min-width: 100px;
  min-height: 20px;
}
.btn:hover {
  opacity: 0.9;
  color: #002D72;
  background-color: white;
}
@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 400;
  }
}

.section-calendar #calendar * {
  font-family: "Cabin";
}
.section-calendar #calendar .fc-daygrid-day-header {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  height: 100%;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .section-calendar #calendar .fc-daygrid-day-header {
    font-size: 14px;
  }
}
.section-calendar #calendar .fc-padding-sm {
  padding: 10px 8px;
  font-weight: 700;
  color: #002D72;
}
.section-calendar .step-1.d-none,
.section-calendar .step-2.d-none {
  display: none;
}
.section-calendar .step-2 {
  margin-top: 0px;
}
.section-calendar .step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}
.section-calendar .step-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #212529;
}
.section-calendar .btn-back {
  background: transparent;
  border: none;
  font-weight: 600;
  color: #212529;
  cursor: pointer;
}
.section-calendar .slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-bottom: 25px;
}
.section-calendar .slot {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #212529;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.section-calendar .slot.reserved {
  background: #f1f1f1;
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
  text-decoration: line-through;
}
.section-calendar .slot.past {
  background: #842029;
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
  text-decoration: line-through;
}
.section-calendar .slot.selected {
  border: 1px solid #C9A44C;
  background: #C9A44C;
  color: #fff;
}
.section-calendar .btn-submit {
  font-family: "Cabin";
  width: 100%;
  padding: 12px;
  background: #002D72;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.1px;
  cursor: pointer;
}
.section-calendar .btn-submit:hover {
  opacity: 0.9;
}
.section-calendar .alert.alert-danger {
  color: #842029;
  margin: 10px 0 !important;
}
.section-calendar .alert.d-none {
  display: none;
}/*# sourceMappingURL=style.css.map */