@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sixtyfour+Convergence&display=swap");
* {
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  scroll-behavior: smooth;
  min-width: 100%;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  background: white;
  font-family: "Montserrat", sans-serif !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: safe flex-start;
      -ms-flex-align: safe flex-start;
          align-items: safe flex-start;
  -webkit-box-pack: safe flex-start;
      -ms-flex-pack: safe flex-start;
          justify-content: safe flex-start;
  position: relative;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
}

body {
  overflow: hidden;
}

.body--open {
  overflow-y: hidden !important;
}

.header {
  width: 100%;
  padding: 5px 10px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(66, 68, 90, 0.34);
  box-shadow: 0px 2px 20px 0px rgba(66, 68, 90, 0.34);
  z-index: 999;
}

@media only screen and (max-width: 650px) {
  .header {
    padding: 5px 5px;
  }
}

.header__logo {
  height: 70px;
  margin: 0 auto 0 0;
}

@media only screen and (max-width: 650px) {
  .header__logo {
    height: 45px;
  }
}

.header__user {
  color: #ef3931;
  outline: none;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 650px) {
  .header__user {
    font-size: 14px;
  }
}

.header__button {
  padding: 6px 14px;
  border: 2px solid #ef3931;
  background: #ef3931;
  color: white;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
  white-space: nowrap;
}

.header__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
  color: #ef3931;
  cursor: pointer;
}

@media only screen and (max-width: 650px) {
  .header__button {
    font-size: 14px;
    padding: 6px 10px;
  }
}

.header__ver {
  font-size: 10px;
  color: black;
  font-weight: 500;
  margin: 0 0 0 10px;
}

@media only screen and (max-width: 650px) {
  .header__ver {
    display: none;
  }
}

.login {
  width: 100%;
  padding: 50px 10px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 80px);
  background-image: url("../img/background-j.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media only screen and (max-width: 650px) {
  .login {
    padding: 30px 10px 10px 10px;
  }
}

.login__logo {
  height: 50px;
  margin: 0 0 10px 0;
}

.login__h1 {
  color: black;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 30px 0;
  text-align: center;
}

@media only screen and (max-width: 650px) {
  .login__h1 {
    font-size: 30px;
  }
}

.login__p {
  color: black;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px 0;
}

@media only screen and (max-width: 650px) {
  .login__p {
    font-size: 16px;
  }
}

.login__form {
  background: white;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 0.3);
  box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 0.3);
  border-radius: 10px;
  padding: 30px 20px;
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login__submit {
  background: #ef3931;
  border: 2px solid #ef3931;
  border-radius: 5px;
  width: 100%;
  padding: 8px 16px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 15px 0 0 0;
}

.login__submit:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
  color: #ef3931;
  cursor: pointer;
}

.login__backLink {
  background: #ef3931;
  border: 2px solid #ef3931;
  border-radius: 5px;
  padding: 8px 16px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 15px 0 0 0;
}

.login__backLink:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
  color: #ef3931;
  cursor: pointer;
}

.login__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  margin: 0 0 15px 0;
}

.login__wrapper input {
  width: 100%;
  border: 1px solid #7c7c7c;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  outline: none;
  border-radius: 2px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: black;
}

.login__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.61);
}

.panel {
  width: 100%;
  padding: 50px 10px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 80px);
  background-image: url("../img/background-j.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  gap: 30px;
}

.panel__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .panel__container {
    gap: 20px;
  }
}

@media only screen and (max-width: 1000px) {
  .panel__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.panel__tests {
  width: 100%;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 0.3);
  box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 0.3);
  gap: 25px;
  border-radius: 5px;
  padding: 30px 20px;
}

@media only screen and (max-width: 1200px) {
  .panel__tests {
    padding: 20px 15px;
  }
}

@media only screen and (max-width: 1000px) {
  .panel__tests {
    max-width: 100%;
  }
}

@media only screen and (max-width: 650px) {
  .panel__tests {
    padding: 20px 10px;
  }
}

.panel__h1 {
  font-size: 30px;
  color: black;
  font-weight: 600;
  width: 100%;
  margin: 0 0 10px 0;
}

@media only screen and (max-width: 1200px) {
  .panel__h1 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 650px) {
  .panel__h1 {
    font-size: 18px;
  }
}

.panel__test {
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(239, 57, 49, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(239, 57, 49, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}

@media only screen and (max-width: 1200px) {
  .panel__test {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 650px) {
  .panel__test {
    padding: 10px 10px;
    width: 100%;
  }
}

.panel__count {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #ef3931;
  font-weight: 1000;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(239, 57, 49, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(239, 57, 49, 0.75);
  padding: 10px;
  font-size: 24px;
  color: #ef3931;
  border-radius: 100%;
  font-family: "Sixtyfour Convergence", sans-serif;
}

@media only screen and (max-width: 1200px) {
  .panel__count {
    font-size: 20px;
  }
}

@media only screen and (max-width: 650px) {
  .panel__count {
    font-size: 15px;
    height: 36px;
    width: 36px;
    min-height: 36px;
    padding: 0;
    min-width: 36px;
  }
}

.panel__name {
  font-weight: 600;
  color: black;
  font-size: 18px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .panel__name {
    font-size: 16px;
  }
}

@media only screen and (max-width: 650px) {
  .panel__name {
    font-size: 14px;
  }
}

.panel__link {
  background: #ef3931;
  border: 2px solid #ef3931;
  border-radius: 7px;
  padding: 8px 16px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 0 0 auto;
}

.panel__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
  color: #ef3931;
  cursor: pointer;
}

@media only screen and (max-width: 650px) {
  .panel__link {
    font-size: 14px;
    padding: 6px 10px;
  }
}

.panel__stats {
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 0.3);
  box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 0.3);
  gap: 20px;
  border-radius: 5px;
  padding: 30px 20px;
}

@media only screen and (max-width: 1200px) {
  .panel__stats {
    max-width: 400px;
    padding: 20px 15px;
  }
}

@media only screen and (max-width: 1000px) {
  .panel__stats {
    max-width: 100%;
  }
}

.panel__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  color: black;
  font-size: 16px;
  font-weight: 600;
}

.panel__info i {
  color: #ef3931;
  font-size: 22px;
}

.panel__info--green i {
  color: #50cc50;
}

.panel__chart {
  width: 100%;
}

.quiz {
  width: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 50%, #f0f2f5 100%);
  background-attachment: fixed;
}

.quiz__survey {
  width: 100%;
  min-height: calc(100vh - 80px);
  --sjs-primary-backcolor: #ef3931;
  --sjs-primary-backcolor-light: rgba(239, 57, 49, 0.08);
  --sjs-primary-backcolor-dark: #c0291f;
  --sjs-primary-forecolor: #ffffff;
  --sjs-base-unit: 8px;
  --sjs-corner-radius: 12px;
  --sjs-font-family: "Montserrat", sans-serif;
}

/* Title */
.quiz__survey .sd-header__text .sd-title {
  color: #1a1a2e !important;
  text-transform: none;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.5px;
}

.quiz__survey .sd-title.sd-container-modern__title {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: white;
  border-radius: 16px 16px 0 0;
  padding: 32px 40px 24px;
  border-bottom: 3px solid #ef3931;
}

/* Question cards */
.quiz__survey .sd-page {
  padding: 0;
}

.quiz__survey .sd-body__page {
  padding: 24px;
}

.quiz__survey .sd-question {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.quiz__survey .sd-question:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.quiz__survey .sd-question__title {
  font-weight: 700 !important;
  font-size: 17px !important;
  color: #1a1a2e !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

/* Radio options */
.quiz__survey .sd-selectbase {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz__survey .sd-item {
  border-radius: 12px;
  padding: 12px 16px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid transparent;
}

.quiz__survey .sd-item:hover {
  background: rgba(239, 57, 49, 0.04);
  border-color: rgba(239, 57, 49, 0.15);
}

.quiz__survey .sd-item--checked {
  background: rgba(239, 57, 49, 0.06) !important;
  border-color: #ef3931 !important;
  box-shadow: 0 2px 12px rgba(239, 57, 49, 0.15);
}

.quiz__survey .sd-item--checked .sd-item__decorator {
  background-color: #ef3931 !important;
  box-shadow: 0 2px 8px rgba(239, 57, 49, 0.35);
}

.quiz__survey .sd-item__control-label {
  font-weight: 500;
  font-size: 15px;
  color: #333;
}

/* Navigation buttons */
.quiz__survey .sd-btn {
  color: #ef3931 !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  padding: 12px 28px !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.quiz__survey .sd-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(239, 57, 49, 0.2);
}

.quiz__survey .sd-btn.sd-btn--action.sd-navigation__complete-btn,
.quiz__survey .sd-btn.sd-navigation__start-btn {
  color: white !important;
  background: linear-gradient(135deg, #ef3931, #c0291f) !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(239, 57, 49, 0.3);
}

.quiz__survey .sd-btn.sd-btn--action.sd-navigation__complete-btn:hover,
.quiz__survey .sd-btn.sd-navigation__start-btn:hover {
  box-shadow: 0 8px 28px rgba(239, 57, 49, 0.4) !important;
  transform: translateY(-2px);
}

/* Progress bar */
.quiz__survey .sd-progress {
  background: rgba(0, 0, 0, 0.06) !important;
  border-radius: 20px !important;
  height: 8px !important;
  overflow: hidden;
  margin: 0 24px;
}

.quiz__survey .sd-progress__bar {
  background: linear-gradient(90deg, #ef3931, #ff6b63) !important;
  border-radius: 20px !important;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 0 12px rgba(239, 57, 49, 0.3);
}

.quiz__survey .sd-progress__text {
  font-weight: 700 !important;
  color: #666 !important;
  font-size: 13px !important;
  margin-top: 6px;
}

/* Body container */
.quiz__survey .sd-root-modern {
  background: transparent !important;
}

.quiz__survey .sd-body {
  background: transparent !important;
}

.quiz__survey .sd-container-modern {
  max-width: 800px;
  margin: 0 auto;
}

/* Start page / completed page */
.quiz__survey .sd-completedpage {
  background: white !important;
  border-radius: 16px;
  padding: 40px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.quiz__survey .sd-completedpage h4 {
  font-size: 22px !important;
  font-weight: 700;
  color: #1a1a2e;
}

/* Completed / submit link */
.quiz__survey #submitSurvey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef3931, #c0291f);
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 10px 0 0 0;
  box-shadow: 0 4px 16px rgba(239, 57, 49, 0.3);
}

.quiz__survey #submitSurvey:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239, 57, 49, 0.4);
  background: linear-gradient(135deg, #d42f28, #a8211a);
  color: white;
  cursor: pointer;
}

/* Footer / navigation area */
.quiz__survey .sd-action-bar {
  padding: 16px 24px !important;
  justify-content: center !important;
}

/* Separator lines */
.quiz__survey .sd-separator {
  display: none;
}

.result {
  width: 100%;
  padding: 50px 10px 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 80px);
  background-image: url("../img/background-j.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  gap: 10px;
}

@media only screen and (max-width: 650px) {
  .result {
    padding: 10px;
  }
}

.result__h1 {
  color: black;
  font-size: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px 0;
}

.result__h1--green {
  color: #44b144;
}

.result__h1--red {
  color: #ef3931;
}

@media only screen and (max-width: 650px) {
  .result__h1 {
    font-size: 30px;
  }
}

.result__button {
  background: #ef3931;
  border: 2px solid #ef3931;
  border-radius: 5px;
  padding: 8px 16px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-transform: uppercase;
  margin: 0 0 0 0;
}

.result__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
  color: #ef3931;
  cursor: pointer;
}

@media only screen and (max-width: 650px) {
  .result__button {
    font-size: 18px;
  }
}

.result__emailInfo {
  text-align: center;
  font-size: 16px;
  color: black;
  font-weight: 600;
  margin: 10px 0 5px 0;
}

@media only screen and (max-width: 650px) {
  .result__emailInfo {
    font-size: 14px;
  }
}

.result__result {
  text-align: center;
  font-size: 24px;
  color: black;
  font-weight: 600;
  margin: 0;
}

.result__result .red {
  color: #ef3931;
  font-weight: 700;
}

.result__result .green {
  color: #44b144;
  font-weight: 800;
}

@media only screen and (max-width: 650px) {
  .result__result {
    font-size: 18px;
  }
}

.result__sadLama {
  height: 250px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 650px) {
  .result__sadLama {
    height: 190px;
  }
}

.result__chartCard {
  width: 100%;
  max-width: 380px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  padding: 28px 20px 16px;
  margin: 15px 0 0 0;
}

.result__chart {
  width: 100%;
}

.result__typeBadge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 5px 0;
}

.result__typeBadge--trial {
  background: #eff6ff;
  color: #2563eb;
}

.result__typeBadge--official {
  background: #fef3c7;
  color: #d97706;
}

.result__score {
  font-size: 48px;
  font-weight: 800;
  color: #333333;
  text-align: center;
  margin: 5px 0 0 0;
}

.result__score-separator {
  color: #888888;
  font-weight: 400;
}

.result__score-label {
  font-size: 22px;
  color: #888888;
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (max-width: 650px) {
  .result__score {
    font-size: 36px;
  }
  .result__score-label {
    font-size: 18px;
  }
}

.result__emailCard {
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  margin: 25px 0 0 0;
}

.result__emailCard-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 32px 32px 28px;
  text-align: center;
  position: relative;
}

.result__emailCard-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 20px;
  background: white;
  border-radius: 20px 20px 0 0;
}

.result__emailCard-icon {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.result__emailCard-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.result__emailCard-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.result__emailCard-body {
  padding: 16px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result__emailCard-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result__emailCard-label {
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result__emailCard-inputWrap {
  position: relative;
  display: flex;
  align-items: center;
}

.result__emailCard-inputIcon {
  position: absolute;
  left: 14px;
  color: #bbb;
  pointer-events: none;
  flex-shrink: 0;
}

.result__emailCard-input {
  width: 100%;
  border: 2px solid #e8e8e8;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 14px 14px 42px;
  outline: none;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  color: #1a1a1a;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
}

.result__emailCard-input::placeholder {
  color: #bbb;
  font-weight: 400;
}

.result__emailCard-input:focus {
  border-color: #ef3931;
  box-shadow: 0 0 0 3px rgba(239, 57, 49, 0.1);
  background: white;
}

.result__emailCard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #ef3931;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.result__emailCard-btn:hover {
  background: #d42f28;
  box-shadow: 0 8px 24px rgba(239, 57, 49, 0.35);
  transform: translateY(-2px);
}

.result__emailCard-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #999;
  box-shadow: none;
  transform: none;
}

.result__emailCard-status {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}

.result__emailCard-status--success {
  color: #059669;
}

.result__emailCard-status--error {
  color: #ef3931;
}

@media only screen and (max-width: 650px) {
  .result__emailCard {
    border-radius: 16px;
  }
  .result__emailCard-header {
    padding: 24px 20px 22px;
  }
  .result__emailCard-body {
    padding: 12px 20px 24px;
  }
  .result__emailCard-title {
    font-size: 18px;
  }
  .result__emailCard-input {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }
  .result__emailCard-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}
.result__logout {
  margin: 25px 0 0 0;
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  border: 2px solid #999;
  border-radius: 12px;
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.result__logout:hover {
  border-color: #ef3931;
  color: #ef3931;
}
/*# sourceMappingURL=style.css.map */