@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Overpass:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --light: #FFFEEC;
  --dark: #503B2F;
  --primary: #A153AA;
  --background-color: var(--light);
  --desktop: 1000px;
  --mobile: 600px;
  --input-border-color: rgba(80, 59, 47, 0.35);
  --input-border-color-selected: var(--primary);
}

body {
  background-color: var(--background-color);
  color: var(--dark);
  font-family: "Overpass", sans-serif;
  font-size: 18px;
}

h1, h2, h3, h4, p {
  color: var(--dark);
}

a {
  font-weight: bold;
  color: var(--primary);
}

input {
  outline: none;
  font-family: "Overpass", sans-serif;
}

button {
  width: 100%;
  height: 54px;
  background-color: rgb(228, 228, 228);
  border: none;
  outline: none;
  font-family: "Overpass", sans-serif;
  font-size: 18px;
  font-weight: bold;
  border-radius: 200px;
  cursor: pointer;
  line-height: normal;
}

.edc-container-full {
  width: 100%;
}

.edc-container {
  width: 100%;
  max-width: 1000px;
  padding: 0px 24px;
}

.edc-title {
  font-size: 28px;
}

.edc-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.edc-input-group .edc-input-label {
  font-size: 16px;
}
.edc-input-group input.edc-input-field {
  width: 100%;
  height: 50px;
  border: 1px solid var(--input-border-color);
  padding: 0px 16px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.15s;
  padding-top: 2px;
}
.edc-input-group input.edc-input-field:hover {
  border: 1px solid var(--input-border-color-selected);
}
.edc-input-group input.edc-input-field:focus {
  border: 2px solid var(--input-border-color-selected);
}
.edc-input-group textarea.edc-input-field {
  width: 100%;
  border: 1px solid var(--input-border-color);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.15s;
  outline: none;
  position: relative;
  font-family: "Overpass", sans-serif;
}
.edc-input-group textarea.edc-input-field:hover {
  border: 1px solid var(--input-border-color-selected);
}
.edc-input-group textarea.edc-input-field:focus {
  border: 2px solid var(--input-border-color-selected);
}
.edc-input-group select.edc-input-field {
  width: 100%;
  height: 50px;
  border: 1px solid var(--input-border-color);
  padding: 2px 12px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  font-size: 18px;
  transition: all 0.15s;
  font-family: "Overpass", sans-serif;
  padding-top: 3px;
  background-color: white;
}
.edc-input-group select.edc-input-field:hover {
  border: 1px solid var(--input-border-color-selected);
}
.edc-input-group select.edc-input-field:focus {
  border: 2px solid var(--input-border-color-selected);
}
.edc-input-group input::placeholder,
.edc-input-group textarea::placeholder {
  color: rgba(80, 59, 47, 0.35);
}
.edc-input-group[toggle] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.edc-input-group[toggle] .switch {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edc-input-group[toggle] input[type=checkbox].edc-input-field {
  width: 40px;
  height: 20px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.edc-input-group[toggle] input[type=checkbox].edc-input-field + .toggle {
  width: 40px;
  height: 40px;
  fill: var(--dark);
  pointer-events: none;
  z-index: 99;
}
.edc-input-group[toggle] input[type=checkbox].edc-input-field + .toggle rect {
  fill: #D9D9D9;
  transition: all 0.25s;
}
.edc-input-group[toggle] input[type=checkbox].edc-input-field + .toggle circle {
  cx: 10px;
  transition: all 0.25s;
}
.edc-input-group[toggle] input[type=checkbox].edc-input-field:checked + .toggle rect {
  fill: var(--primary);
}
.edc-input-group[toggle] input[type=checkbox].edc-input-field:checked + .toggle circle {
  cx: 24px;
}
.edc-input-group[data-arrow]::after {
  content: "▼";
  width: 32px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 6px;
  top: 32px;
  transform: scaleX(1.3);
  background-color: white;
  font-size: 14px;
  pointer-events: none;
  color: var(--primary);
}

.edc-input-checkbox {
  width: 18px;
  height: 18px;
}

.btn-primary {
  border: none;
  outline: none;
  width: 100%;
  height: 54px;
  background-color: var(--primary);
  font-family: "Overpass", sans-serif;
  color: var(--light);
  font-size: 18px;
  font-weight: bold;
  border-radius: 200px;
  padding-top: 2px;
  transition: all 0.25s;
}
.btn-primary:hover {
  background-color: #94459c;
}

.btn-secondary {
  border: none;
  outline: none;
  width: 100%;
  height: 54px;
  background-color: white;
  font-family: "Overpass", sans-serif;
  color: var(--primary);
  border: 1px solid var(--primary);
  font-size: 18px;
  font-weight: bold;
  border-radius: 200px;
  padding-top: 2px;
}
.btn-secondary:hover {
  background-color: #fef7ff;
}

.edc-options {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 20px;
  background-color: white;
  box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.25);
  z-index: 999;
}
.edc-options .btn-primary,
.edc-options .btn-secondary {
  height: 48px;
  max-width: 240px;
}

.edc-head {
  width: 100%;
  display: flex;
  font-size: 22px;
  font-weight: bold;
  background: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.edc-head .content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.edc-head .head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}
.edc-head .back {
  display: flex;
  justify-content: center;
  align-items: center;
}
.edc-head .back svg {
  min-width: 38px;
  min-height: 38px;
  width: 38px;
  height: 38px;
}
.edc-head .title {
  position: relative;
  top: 2px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  font-size: 24px;
}
.edc-head .description {
  width: 100%;
  font-size: 16px;
  font-weight: normal;
}

.edc-head-filled {
  width: 100%;
  display: flex;
  font-size: 22px;
  font-weight: bold;
  background: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.edc-head-filled .content {
  width: 100%;
  max-width: 1000px;
  display: flex;
  padding: 18px 20px;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.edc-head-filled .back {
  display: flex;
  justify-content: center;
  align-items: center;
}
.edc-head-filled .back svg {
  min-width: 38px;
  min-height: 38px;
  width: 38px;
  height: 38px;
}
.edc-head-filled p {
  position: relative;
  top: 2px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.edc-help-banner {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 68px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  cursor: pointer;
  z-index: 999;
}
.edc-help-banner > * {
  pointer-events: none;
}
.edc-help-banner .description {
  color: white;
  position: relative;
  top: 2px;
  font-weight: bold;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
}
.edc-help-banner .left-question {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
}
.edc-help-banner .right-question {
  position: absolute;
  right: -40px;
  width: 150px;
  height: 150px;
  opacity: 0.25;
}
@media (min-width: 1000px) {
  .edc-help-banner {
    left: 250px;
  }
}

.edc-mobile-tabs {
  width: 100%;
  height: 68px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  background-color: white;
  box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}
.edc-mobile-tabs .content {
  width: 100%;
  padding: 0px 24px;
  display: flex;
  justify-content: center;
}
.edc-mobile-tabs .tab {
  width: 100%;
  max-width: 200px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s;
}
.edc-mobile-tabs .tab svg {
  fill: var(--dark);
}
.edc-mobile-tabs .tab.active {
  color: var(--primary);
  background-color: #F1E5F2;
}
.edc-mobile-tabs .tab.active svg {
  fill: var(--primary);
}
@media (min-width: 1000px) {
  .edc-mobile-tabs {
    display: none;
  }
}

.edc-desktop-sidenav {
  width: 250px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: white;
  box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 9999;
}
.edc-desktop-sidenav .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.edc-desktop-sidenav .nav {
  display: flex;
  flex-direction: column;
}
.edc-desktop-sidenav .nav > img {
  padding: 24px;
  width: 180px;
  margin: 0 auto;
  margin-bottom: 12px;
}
.edc-desktop-sidenav .navtab {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0px 16px;
}
.edc-desktop-sidenav .navtab .label {
  font-size: 16px;
  color: var(--dark);
  font-weight: normal;
  position: relative;
  top: 2px;
}
.edc-desktop-sidenav .navtab svg {
  width: 24px;
  height: 24px;
  fill: var(--dark);
}
.edc-desktop-sidenav .navtab.red {
  color: #FF0000;
}
.edc-desktop-sidenav .navtab.active {
  background-color: #F1E5F2;
}
.edc-desktop-sidenav .navtab.active .label {
  color: var(--primary);
}
.edc-desktop-sidenav .navtab.active svg {
  fill: var(--primary);
}
.edc-desktop-sidenav .membership {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(80, 59, 47, 0.25);
  margin: 0px 20px;
  border-radius: 8px;
  font-size: 14px;
}
.edc-desktop-sidenav .membership .title {
  font-size: 18px;
  font-weight: bold;
}
.edc-desktop-sidenav .options {
  display: flex;
  flex-direction: column;
  padding: 16px 0px;
}
.edc-desktop-sidenav .option {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0px 16px;
  font-size: 16px;
  color: var(--dark);
  font-weight: normal;
}
.edc-desktop-sidenav .option.red {
  color: #FF0000;
}
@media (min-width: 1000px) {
  .edc-desktop-sidenav {
    display: block;
  }
}

.edc-partners-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.edc-partners-footer .splide__slide {
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edc-partners-footer .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.edc-partners-footer.absolute {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.blazing-subfooter {
  width: 100%;
  height: 40px;
  background-color: #2F2F2F;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
}

.blazing-subfooter p {
  color: inherit;
  font-size: 14px;
}

.blazing-subfooter img {
  height: 28px;
  max-height: 28px;
  object-fit: contain;
  filter: brightness(99);
}

.inner-container {
  width: 100%;
}
@media (min-width: 1000px) {
  .inner-container {
    padding-left: 250px !important;
  }
}

.doubts-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: none;
}
.doubts-modal .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
}
.doubts-modal .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--light);
  padding: 24px;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}
.doubts-modal .label,
.doubts-modal span {
  font-weight: bold;
}
.doubts-modal .close {
  width: 38px;
  height: 38px;
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.doubts-modal .close svg {
  pointer-events: none;
}

.delete-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: none;
}
.delete-modal .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
}
.delete-modal .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--light);
  padding: 24px;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}
.delete-modal .label,
.delete-modal span {
  font-weight: bold;
}
.delete-modal .close {
  width: 38px;
  height: 38px;
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.delete-modal .close svg {
  pointer-events: none;
}
.delete-modal .options {
  display: flex;
  gap: 12px;
}

.upload-photo-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: none;
}
.upload-photo-modal .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
}
.upload-photo-modal .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--light);
  padding: 24px;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}
.upload-photo-modal .label,
.upload-photo-modal span {
  font-weight: bold;
}
.upload-photo-modal ul {
  padding-left: 20px;
}
.upload-photo-modal .close {
  width: 38px;
  height: 38px;
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.upload-photo-modal .close svg {
  pointer-events: none;
}
.upload-photo-modal .inputs {
  margin: 16px 0px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.upload-photo-modal .inputs input[type=file] {
  font-size: 18px;
}
.upload-photo-modal .options {
  display: flex;
  gap: 12px;
}

.upload-file-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: none;
}
.upload-file-modal .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
}
.upload-file-modal .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--light);
  padding: 24px;
  border-radius: 8px;
  position: relative;
  z-index: 9999;
}
.upload-file-modal .label,
.upload-file-modal span {
  font-weight: bold;
}
.upload-file-modal ul {
  padding-left: 20px;
}
.upload-file-modal .close {
  width: 38px;
  height: 38px;
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.upload-file-modal .close svg {
  pointer-events: none;
}
.upload-file-modal .inputs {
  margin: 16px 0px;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.upload-file-modal .inputs input[type=file] {
  font-size: 18px;
}
.upload-file-modal .options {
  display: flex;
  gap: 12px;
}

.show-modal {
  display: flex;
}

.swal2-container {
  z-index: 99999 !important;
}

button > * {
  pointer-events: none !important;
}

.edc-page-auth .login-image {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edc-page-auth .login-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edc-page-auth .login-form {
  width: 100%;
}
.edc-page-auth .login-form-content {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 40px 24px;
}
.edc-page-auth .login-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edc-page-auth .login-title {
  text-align: center;
  margin-bottom: 24px;
}
.edc-page-auth .login-forgot {
  text-align: right;
  font-size: 16px;
  margin-top: 12px;
}
.edc-page-auth .login-submit {
  margin-top: 24px;
}
.edc-page-auth .login-create-text {
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 16px;
}
@media (min-width: 1000px) {
  .edc-page-auth .login-container {
    display: flex;
    min-height: 100vh;
  }
  .edc-page-auth .login-image {
    position: fixed;
    width: 50%;
    height: 100vh;
  }
  .edc-page-auth .login-form {
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
  }
}
.edc-page-auth .register-image {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edc-page-auth .register-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edc-page-auth .register-form {
  width: 100%;
}
.edc-page-auth .register-form-content {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 40px 24px;
}
.edc-page-auth .register-title {
  text-align: center;
  margin-bottom: 12px;
}
.edc-page-auth .register-description {
  text-align: justify;
  margin: 0;
}
.edc-page-auth .register-instructivo-banner {
  margin: 20px 0 8px;
  padding: 16px 14px;
  background: rgba(161, 83, 170, 0.08);
  border: 1px solid rgba(161, 83, 170, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.edc-page-auth .register-instructivo-banner__text {
  font-size: 15px;
  line-height: 1.45;
  color: var(--dark);
  margin: 0;
}
.edc-page-auth .register-instructivo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background-color: var(--primary);
  color: var(--light);
  font-family: "Overpass", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 200px;
  transition: background-color 0.2s;
  width: 100%;
  max-width: 280px;
}
.edc-page-auth .register-instructivo-banner__btn:hover {
  background-color: #94459c;
  color: var(--light);
}
.edc-page-auth .register-label-with-tooltip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.edc-page-auth .register-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.edc-page-auth .register-tooltip__btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(161, 83, 170, 0.55);
  background: rgba(161, 83, 170, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: help;
  flex-shrink: 0;
}
.edc-page-auth .register-tooltip__icon {
  display: block;
  flex-shrink: 0;
}
.edc-page-auth .register-tooltip__btn:hover,
.edc-page-auth .register-tooltip__btn:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(161, 83, 170, 0.2);
}
.edc-page-auth .register-tooltip__btn:focus-visible {
  box-shadow: 0 0 0 2px var(--light), 0 0 0 4px var(--primary);
}
.edc-page-auth .register-tooltip__bubble {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: min(280px, 85vw);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(80, 59, 47, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(80, 59, 47, 0.12);
  font-size: 14px;
  line-height: 1.45;
  color: var(--dark);
  text-align: left;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.edc-page-auth .register-tooltip:hover .register-tooltip__bubble,
.edc-page-auth .register-tooltip:focus-within .register-tooltip__bubble {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.edc-page-auth .register-tooltip--bubble-end .register-tooltip__bubble {
  left: auto;
  right: 0;
}
.edc-page-auth .register-subtitle {
  margin: 32px 0px;
}
.edc-page-auth .register-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edc-page-auth .register-terms {
  display: flex;
  gap: 12px;
  margin: 32px 0px;
  font-size: 16px;
}
.edc-page-auth .register-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1000px) {
  .edc-page-auth .register-container {
    display: flex;
    min-height: 100vh;
  }
  .edc-page-auth .register-image {
    position: fixed;
    width: 50%;
    height: 100vh;
  }
  .edc-page-auth .register-form {
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
  }
}
.edc-page-auth .recoverpass-image {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edc-page-auth .recoverpass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edc-page-auth .recoverpass-form {
  width: 100%;
}
.edc-page-auth .recoverpass-form-content {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  margin: auto;
  padding: 40px 24px;
}
.edc-page-auth .recoverpass-title {
  text-align: center;
}
.edc-page-auth .recoverpass-description {
  margin-top: 12px;
}
.edc-page-auth .recoverpass-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0px;
}
.edc-page-auth .recoverpass-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1000px) {
  .edc-page-auth .recoverpass-container {
    display: flex;
    min-height: 100vh;
  }
  .edc-page-auth .recoverpass-image {
    position: fixed;
    width: 50%;
    height: 100vh;
  }
  .edc-page-auth .recoverpass-form {
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
  }
}
.edc-page-auth .changepass-image {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edc-page-auth .changepass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.edc-page-auth .changepass-form {
  width: 100%;
}
.edc-page-auth .changepass-form-content {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 40px 24px;
}
.edc-page-auth .changepass-title {
  text-align: center;
}
.edc-page-auth .changepass-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0px;
}
.edc-page-auth .changepass-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1000px) {
  .edc-page-auth .changepass-container {
    display: flex;
    min-height: 100vh;
  }
  .edc-page-auth .changepass-image {
    position: fixed;
    width: 50%;
    height: 100vh;
  }
  .edc-page-auth .changepass-form {
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
  }
}
.edc-page-auth .terms {
  width: 100%;
  min-height: 100vh;
}
.edc-page-auth .terms-content {
  padding: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.edc-page-auth .terms-title {
  margin-bottom: 24px;
}
