
@import url("mystic.css");

body {
  width: 100%;
  height: 100dvh;
  background-color: none;
  margin: 0;
  padding: 0;
  overflow: hidden;

}

/* 2026 accessibility and spacing refinements */
html body {
  height: auto !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

html body #signup-form #gender {
  color: #fff4d6 !important;
  background-color: #1a1006 !important;
  border-color: #e59a24 !important;
  color-scheme: dark;
}

html body #signup-form #gender option {
  color: #fff4d6 !important;
  background-color: #1a1006 !important;
}

html body #signup-form {
  margin-bottom: 2rem;
}

header {
  background: none !important;
}

.front_title {
  margin: 20px 10px auto auto;
  font-size: 80px;
  background: none !important;
  color: white;
  -webkit-text-stroke: 4px black;
  padding-left: 100px;
  animation: slide-in 1s ease-in-out 0.5s forwards;
}

@keyframes slide-in {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


   /* MAIN */


 #logodiv {
   display: flex;
   justify-content: center;
   align-items: center;
   background: none;
   margin-left:-15%;
  }

  .front_logo {
    margin: auto auto auto 170px;
    height: 512px;
    width: 512px;
    background: none;
    margin-left: 20%;
  }

   #log_section {
    margin-left: 40%;
   display: flex;
   flex-direction: column;
   align-items: center;
   background: none;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-top: -35%;
 }

   .front_slogan {
     color: white;
     background: none !important;
     position: inherit;
     display: inline-block;
     margin-left: 5%;
     font-size: 75px;
     animation: slide-in 1.5s ease-in-out 1s forwards;
   }

  .front_signup_button {
      background: none;
      padding: inherit;
      height: 50px;
      width: 200px;
      font-size: 40px;
      border-style: solid;
      border-radius: 20px;
      border-color: black;
      text-align: center;
      text-decoration: none;
      margin-top: 5%;
  }
   .front_signup_button:hover {
        background-color: white;
        padding: inherit;
        height: 50px;
        width: 200px;
        font-size: 40px;
        border-style: solid;
        border-radius: 20px;
        border-color: black;
      }
       .front_login_button {
         background: none;
         padding: inherit;
         height: 50px;
         width: 200px;
         font-size: 40px;
         border-style: solid;
         border-radius: 20px;
         border-color: black;
         text-align: center;
         text-decoration: none;
         margin-top: 10%;
       }
       .front_login_button:hover {
            background-color: white;
            padding: inherit;
            height: 50px;
            width: 200px;
            font-size: 40px;
            border-style: solid;
            border-radius: 20px;
            border-color: black;
          }
          .signup_space {
            position: absolute;
            margin: auto auto auto 450px;
            border: 2px;
            border-color: inherit;
            border-style: groove;
            height: 600px;
            width: 500px;
            background: none;
          }
          .signup_submit {
            height: 50px;
            width: 150px;
            position: absolute;
            background: none;
            padding: inherit;
            border-radius: 20px;
            margin: 500px auto auto  180px;
            font-size: 30px;
          }
          .signup_submit:hover {
            height: 50px;
            width: 150px;
            position: absolute;
            background-color: white;
            padding: inherit;
            border-radius: 20px;
            margin: 500px auto auto  180px;
            font-size: 30px;
          }





/* FOOTER */

.footer {
  background: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100dvw;
  color: white;
  margin-top: -3%; /* Increase the margin-top to create more space */
  gap: 5%;
  margin-left: 0%;
}

#footerlinks {
  background: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: -35%;
}

footer a {
  text-decoration: none;
  color: white;
  padding-right: 10px;
  background: none;
}

footer a:hover {
  color: black;
  -webkit-text-stroke: white 0.1px;
  -webkit-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

#trademark {
  color: white;
  background: none;
  font-size: 30px;
  -webkit-text-stroke-color: black;
  -webkit-text-stroke-opacity: 1;
  font-style: italic;
  margin-left: -1%;
  position: static;
}


/* Apply opacity to specific elements inside the main content initially */
#logodiv, #log_section {
  opacity: 0;
  animation: fade-in 1.5s ease-in-out 1.5s forwards;
}

/* Slide-in effect for the title */
.front_title {
  opacity: 0;
  animation: slide-in 1s ease-in-out 0.5s forwards;
}

/* Slide-in effect for the slogan (slower) */
.front_slogan {
  opacity: 0;
  animation: slide-in 1.5s ease-in-out 1s forwards;
}

/* Initially hide the "Back to Election" button */
#back-to-election {
  display: none;
}

/* Other styles (you can adjust as needed) */
/* ... */

::placeholder {
  font-size: 18px !important;
}



/* Add this CSS for the signup form */
#signup-form {
    margin-left: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-top: -5%;
    padding: 30px; /* Add padding for better spacing */
  }
  
  /* Style the form elements */
  #signup-form h1 {
    font-size: 24px;
    margin-bottom: 10%;
  }
  
  #signup-form input[type="text"],
  #signup-form input[type="password"], 
  #signup-form input[type="email"],
  select option,
  select,
  textarea
  {
    width: 100%;
    padding: 10px;
    margin-bottom: 7%;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    resize: none;
    color: white !important;
    background: none !important;
    font-size: 14px;
  }

  select option {
    color: black !important;
  }

  textarea {
    height: 100px;
  }
  
  #signup-form button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    background-color: none;
    background: none;
  }
  
  #signup-form button:hover {
    background-color: black;
  }
  
  #signup-form p {
    margin-top: 7%;
    background: none !important;
    color: white;
  }

    
  #signup-form a {
    margin-top: 10%;
    background: none !important;
    text-decoration: underline;
    color: white;
    font-style: italic;
    font-size: larger;
  }

  ::placeholder {
    color: white;
  }


  /* Main Section Form Effect */
#signup-form {
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, scale 0.5s ease;
}

#signup-form:hover {
  opacity: 1; /* Slightly reduce opacity on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow on hover */
}



/* Style the form elements */
#signup-form input[type="text"],
#signup-form input[type="password"],
#signup-form input[type="email"],
#signup-form input[type="date"],
select option,
select,
textarea {
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#signup-form input[type="text"]:hover,
#signup-form input[type="password"]:hover,
#signup-form input[type="email"]:hover,
#signup-form input[type="date"]:hover,
#signup-form select option:hover,
#signup-form select:hover,
#signup-form textarea:hover {
  transform: scale(1.05); /* Slightly scale up the input elements on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow on hover */
}

#signup-form input[type="text"]:focus,
#signup-form input[type="password"]:focus,
#signup-form input[type="email"]:focus,
#signup-form input[type="date"]:focus,
#signup-form select option:focus,
#signup-form select:focus,
#signup-form textarea:focus {
  transform: scale(1.05); /* Slightly scale up the input elements on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle box shadow on hover */
  border: 3px solid black;
}

/* Date of birth input styling */

#signup-form input#dob {
  width: 100%;
  padding: 10px;
  margin-bottom: 7%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: transparent !important;
  color: none !important;
  font-size: 14px;
}

/* Modern date-of-birth control */
html body #signup-form .dob-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 256px;
  max-width: 80dvw;
  align-self: center;
  margin: 0 0 7%;
  background: transparent !important;
}

html body #signup-form .dob-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 0 .45rem;
  color: #ffe09a !important;
  font-family: "Orbitron", "Rehab Display", sans-serif !important;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

html body #signup-form .dob-field label span {
  color: #d6b877 !important;
  font-family: "Rajdhani", "Rehab Sans", sans-serif !important;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none;
}

html body #signup-form .dob-field #dob {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 10px 14px;
  color: #fff4d6 !important;
  background: rgba(18, 11, 4, .82) !important;
  border: 1px solid #d98a1d !important;
  border-radius: 10px !important;
  font-family: "Rajdhani", "Rehab Sans", sans-serif !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  color-scheme: dark;
  cursor: pointer;
}

html body #signup-form .dob-field #dob:hover {
  border-color: #ffc95c !important;
  box-shadow: 0 0 14px rgba(255, 174, 43, .22) !important;
}

html body #signup-form .dob-field #dob:focus {
  border-color: #ffd369 !important;
  box-shadow: 0 0 0 2px rgba(255, 181, 46, .2), 0 0 22px rgba(255, 151, 22, .3) !important;
  transform: none;
}

html body #signup-form .dob-field #dob::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(88%) sepia(63%) saturate(681%) hue-rotate(337deg) brightness(105%);
  opacity: .95;
}

html body #signup-form .dob-requirement {
  display: block;
  width: 100%;
  margin: .38rem 0 0;
  color: #c9b58f !important;
  background: transparent !important;
  font-family: "Rajdhani", "Rehab Sans", sans-serif !important;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .025em;
  text-align: left;
}

html body #signup-form .dob-requirement[data-state="valid"] {
  color: #ffd982 !important;
}

html body #signup-form .dob-requirement[data-state="invalid"] {
  color: #ff9b79 !important;
}

@media screen and (max-width: 1023px) {
  html body #signup-form .dob-field {
    width: 80dvw;
  }
}



#signup-form button {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#signup-form button:hover {
  background-color: black; /* Change background color on hover */
  transform: scale(1.05); /* Scale up the button on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a box shadow on hover */
}

#signup-form p {
  transition: color 0.3s ease;
}

#signup-form p:hover {
  color: black; /* Change text color on hover */
}

#signup-form a {
  transition: text-decoration 0.3s ease, color 0.3s ease, font-size 0.3s ease;
}

#signup-form a:hover {
  text-decoration: none; /* Remove underline on hover */
  color: black; /* Change link color on hover */
  font-size: larger; /* Slightly increase font size on hover */
}

/* Main Section Text Effect */
#main-text {
  transition: transform 0.3s ease, opacity 0.3s ease, text-shadow 0.3s ease;
}

#main-text:hover {
  transform: scale(1.02); /* Slightly scale up the text on hover */
  opacity: 0.9; /* Slightly reduce opacity on hover */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Add a subtle text shadow on hover */
}








   /* MEDIA QUERIES */

   /* Media Query for Mobile Screens */
@media screen and (max-width: 767px)  {
  body {
    overflow-y: auto !important;
   }
   #log_section {
    margin-top: -20%;
    width: 100%;
    margin-left: -20%;
   }
   #signup-form input[type="text"], #signup-form input[type="password"], #signup-form input[type="email"], select option, select, textarea {
    width: 80dvw !important;
    padding: 10px;
    margin-bottom: 7%;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    resize: none;
    color: white !important;
    background: none !important;
  }
  .front_slogan {
    color: white;
    background: none !important;
    position: inherit;
    display: inline-block;
    margin-left: 25dvw !important;
    font-size: 75px;
    animation: slide-in 1.5s ease-in-out 1s forwards;
    
  }
  textarea {
    height: 300px;
}
select option {
  color: black !important;
}
#signup-form p {
  margin-top: 10%;
  background: none !important;
  color: white;
  font-size: 3dvh;
  text-wrap: wrap;
  width: 80dvw;
}


 }
 /* Add more styles for mobile screens as needed */

   /* Media Query for Tablet Screens */
   @media screen and (min-width: 768px) and (max-width: 1023px) {
  body {
    overflow-y: auto !important;
   }
   #log_section {
    margin-top: -20%;
    width: 100%;
    margin-left: -20%;
   }
   #signup-form input[type="text"], #signup-form input[type="password"], #signup-form input[type="email"], select option, select, textarea {
    width: 80dvw !important;
    padding: 10px;
    margin-bottom: 7%;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    resize: none;
    color: white !important;
    background: none !important;
  }
  .front_slogan {
    color: white;
    background: none !important;
    position: inherit;
    display: inline-block;
    margin-left: 70dvw !important;
    font-size: 75px;
    animation: slide-in 1.5s ease-in-out 1s forwards;
    
  }
  textarea {
    height: 300px;
}
select option {
  color: black !important;
}
#signup-form p {
  margin-top: 10%;
  background: none !important;
  color: white;
  font-size: 3dvh;
  text-wrap: wrap;
  width: 80dvw;
}
.footer {
  margin-top: 15% !important;
  margin-left: 16dvw !important;
}
.front_title  {
  padding-left: 35dvw;
}
.footer a {
  text-decoration: none;
  color: white;
  padding-right: 1px;
  background: none;
  width: 100% !important;
  font-size: 17px;
  justify-content: center !important;
}
#trademark {
  width: 40dvw !important;
  margin-left: -25dvw !important;
}
 }
 /* Add more styles for tablet screens as needed */


  
  



@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  body {
    overflow-y: hidden !important;
   }
   #log_section {
    margin-top: -22%;
    width: 30dvw;
    margin-left: 50%;
    display: flex !important;
    flex-direction: row !important;
    gap: 5% !important;
    flex-wrap: wrap !important;
    justify-content: space-evenly !important;
    align-items: center !important;
    
   }
   #signup-form input[type="text"], #signup-form input[type="password"], #signup-form input[type="email"], select option, select, textarea {
    width: 20dvw !important;
    padding: 10px;
    margin-bottom: 4%;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    resize: none;
    color: white !important;
    background: none !important;
    display: flex !important;
  }
  .front_slogan {
    color: white;
    background: none !important;
    position: inherit;
    display: inline-block;
    margin-left: 5dvw !important;
    font-size: 50px;
    animation: slide-in 1.5s ease-in-out 1s forwards;
    
  }
  textarea {
    height: 100px;
    width: 500px !important;
}
}

/* Live password intelligence */
html body #signup-form .password-component {
  width: min(100%, 340px);
  margin: 0 0 5%;
  color: #fff6e4 !important;
  background: transparent !important;
  font-family: "Rajdhani", "Rehab Sans", "Segoe UI", sans-serif !important;
}

html body #signup-form .password-input-shell {
  position: relative;
  width: 100%;
  background: transparent !important;
}

html body #signup-form .password-input-shell input,
html body #signup-form .password-input-shell input[type="password"],
html body #signup-form .password-input-shell input[type="text"] {
  box-sizing: border-box;
  display: block !important;
  width: 100% !important;
  min-height: 44px;
  margin: 0 !important;
  padding: 9px 3rem 9px 13px !important;
  color: #fff8e9 !important;
  background: #120c05 !important;
  border: 1px solid rgba(237, 151, 32, .66) !important;
  border-radius: 12px !important;
  font-family: "Rajdhani", "Rehab Sans", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600;
  letter-spacing: .025em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035) !important;
  transform: none !important;
}

html body #signup-form .password-input-shell input:hover {
  border-color: rgba(255, 199, 90, .82) !important;
  box-shadow: 0 0 18px rgba(239, 132, 19, .12), inset 0 1px 0 rgba(255, 255, 255, .04) !important;
  transform: none !important;
}

html body #signup-form .password-input-shell input:focus {
  border-color: #ffd369 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(255, 199, 90, .16), 0 0 24px rgba(238, 126, 15, .2) !important;
  transform: none !important;
}

html body #signup-form .password-input-shell input::placeholder {
  color: #b7a88e !important;
  font-style: normal !important;
}

html body #signup-form .password-visibility-toggle {
  position: absolute !important;
  z-index: 2;
  top: 50%;
  right: .45rem;
  width: 2rem !important;
  min-width: 2rem !important;
  height: 2rem !important;
  min-height: 2rem !important;
  margin: 0 !important;
  padding: .45rem !important;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(255, 194, 83, .2) !important;
  border-radius: 9px !important;
  color: #e9c47d !important;
  background: #211507 !important;
  box-shadow: none !important;
  transform: translateY(-50%) !important;
  overflow: visible;
}

html body #signup-form .password-visibility-toggle::after {
  content: none !important;
}

html body #signup-form .password-visibility-toggle:hover {
  color: #fff3cc !important;
  border-color: rgba(255, 199, 90, .65) !important;
  background: #332108 !important;
  box-shadow: 0 0 14px rgba(255, 172, 40, .18) !important;
  transform: translateY(-50%) !important;
}

html body #signup-form .password-visibility-toggle:focus-visible {
  outline: 2px solid #ffd369;
  outline-offset: 2px;
}

.password-visibility-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: transparent !important;
}

.password-visibility-toggle .eye-closed,
.password-visibility-toggle.is-visible .eye-open {
  display: none;
}

.password-visibility-toggle.is-visible .eye-closed {
  display: block;
}

html body #signup-form .password-intelligence {
  box-sizing: border-box;
  width: 100%;
  margin: .45rem 0 .55rem;
  padding: .65rem .72rem;
  border: 1px solid rgba(255, 190, 78, .22);
  border-radius: 11px;
  color: #fff8e9 !important;
  background: #0f0b06 !important;
  box-shadow: 0 9px 24px rgba(0, 0, 0, .2) !important;
}

html body #signup-form .password-strength-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: #cbb99b !important;
  background: transparent !important;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

html body #signup-form .password-strength-heading span {
  color: #cbb99b !important;
}

html body #signup-form .password-strength-heading strong {
  color: #ffd36f !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #ffd36f !important;
  font-family: "Orbitron", "Rehab Display", sans-serif !important;
  font-size: .68rem;
  letter-spacing: .07em;
  text-align: right;
  text-shadow: 0 0 12px rgba(255, 178, 50, .22);
}

html body #signup-form .password-strength-meter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .35rem;
  width: 100%;
  height: 4px;
  margin: .5rem 0 .58rem;
  background: transparent !important;
}

html body #signup-form .password-strength-meter span {
  display: block;
  border-radius: 99px;
  background: #352719 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

html body #signup-form .password-strength-meter span.is-active {
  transform: scaleY(1.3);
}

html body #signup-form .password-strength-meter[data-strength="1"] span.is-active {
  background: #ef694f !important;
  box-shadow: 0 0 10px rgba(239, 105, 79, .48);
}

html body #signup-form .password-strength-meter[data-strength="2"] span.is-active {
  background: #e78a22 !important;
  box-shadow: 0 0 10px rgba(231, 138, 34, .44);
}

html body #signup-form .password-strength-meter[data-strength="3"] span.is-active {
  background: #f7b93e !important;
  box-shadow: 0 0 11px rgba(247, 185, 62, .48);
}

html body #signup-form .password-strength-meter[data-strength="4"] span.is-active {
  background: #ffe39c !important;
  box-shadow: 0 0 13px rgba(255, 211, 105, .7);
}

html body #signup-form .password-requirements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent !important;
}

html body #signup-form .password-requirements li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  align-items: center;
  gap: .48rem;
  color: #a99b84 !important;
  background: transparent !important;
  font-size: .73rem;
  line-height: 1.3;
  transition: color .2s ease;
}

html body #signup-form .password-requirements li:last-child {
  grid-column: 1 / -1;
}

html body #signup-form .password-requirements li i {
  width: .9rem;
  height: .9rem;
  display: grid;
  place-items: center;
  border: 1px solid #665135;
  border-radius: 50%;
  background: #181008 !important;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

html body #signup-form .password-requirements li i::after {
  content: "";
  width: .35rem;
  height: .2rem;
  border-left: 1.5px solid #160c03;
  border-bottom: 1.5px solid #160c03;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg);
}

html body #signup-form .password-requirements li[data-state="pass"] {
  color: #ffe3a1 !important;
}

html body #signup-form .password-requirements li[data-state="pass"] i {
  border-color: #ffd369;
  background: #ffd369 !important;
  box-shadow: 0 0 10px rgba(255, 188, 61, .3);
}

html body #signup-form .password-requirements li[data-state="pass"] i::after {
  opacity: 1;
}

html body #signup-form .password-requirements li[data-state="fail"] {
  color: #e8a087 !important;
}

html body #signup-form .password-requirements li[data-state="fail"] i {
  border-color: #c75e3e;
  background: #3a160c !important;
}

html body #signup-form .password-guidance {
  display: block;
  margin-top: .38rem;
  padding-top: .34rem;
  border-top: 1px solid rgba(255, 190, 78, .14);
  color: #bbaa8e !important;
  background: transparent !important;
  font-size: .67rem;
  line-height: 1.25;
}

html body #signup-form .password-guidance svg {
  display: none;
}

html body #signup-form .password-guidance span {
  color: #bbaa8e !important;
}

html body #signup-form .password-input-shell--confirm {
  margin-top: .1rem;
}

html body #signup-form .password-match-status,
html body #signup-form .caps-lock-status {
  width: 100%;
  margin: .28rem 0 0 !important;
  color: #a99b84 !important;
  background: transparent !important;
  font-size: .76rem !important;
  line-height: 1.3;
  text-align: left;
}

html body #signup-form .password-match-status[data-state="match"] {
  color: #ffd982 !important;
}

html body #signup-form .password-match-status[data-state="mismatch"] {
  color: #ff9b79 !important;
}

html body #signup-form .caps-lock-status {
  color: #ffbf70 !important;
  font-weight: 700;
}

html body #signup-form > button[type="submit"]:disabled {
  color: #92846f !important;
  background: #29221a !important;
  border-color: #55462f !important;
  box-shadow: none !important;
  cursor: not-allowed;
  filter: none;
  opacity: .78;
  transform: none !important;
}

html body #signup-form > button[type="submit"]:disabled::after {
  content: none !important;
}

@media screen and (max-width: 1023px) {
  html body #signup-form .password-component {
    width: 80dvw;
    max-width: 520px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  html body {
    overflow-y: auto !important;
  }

  html body #signup-form .password-component {
    width: 20dvw;
    min-width: 260px;
  }
}

@media screen and (max-width: 480px) {
  html body #signup-form .password-component {
    width: 84dvw;
  }

  html body #signup-form .password-intelligence {
    padding: .62rem;
  }

  html body #signup-form .password-strength-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: .2rem;
  }

  html body #signup-form .password-strength-heading strong {
    text-align: left;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1440px) {
select option {
  color: black !important;
}
#signup-form p {
  margin-top: 10%;
  background: none !important;
  color: white;
  font-size: 3dvh;
  text-wrap: wrap;
  width: 30dvw;
}
.footer {
  background: none;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  align-content: center !important;
  width: 100dvw;
  color: white;
  margin-top: 0% !important; /* Increase the margin-top to create more space */
  gap: 5% !important;
  flex-wrap: wrap !important;
  margin-left: 7dvw !important;
}
.footer a {
  text-decoration: none;
  color: white;
  background: none;
  width: 15dvw !important;
  font-size: 15px;
  margin-right: -3%;
}
#footerlinks {
  margin-left: -15%;
}

#trademark {
  margin-left: -10% !important;
  margin-top: 3%;
  font-size: 25px;
}

}





