
/* COLOR VARIABLES */
:root {
    --primary-color: #b8d057;
    --secondary-color: #b8d057;
    --background-color: #EFEFEF;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --white-color: #FFF;
    --black-color: #000;
    --gray-color: #58595b;
    --hover-color: #58595b;
    --input-border-color: #E3E4E6;
    --border-color:#cfcece;
    --button-hover:#a8c65d;
    --transition-3s: 0.3s;
     font-family: Arial, sans-serif;
}

/* GLOBAL STYLES */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: Arial, sans-serif;
}

/* REUSABLE ELEMENTS */
a{
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-3s);
     font-family: Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--background-color);
  font-family: Arial, sans-serif;
  
}



/* WRAPPER */
.wrapper {
  display: inline-block;
  vertical-align: top;
  margin: 45px 0px 0;
  position: relative;
  width: 430px;
  height: 430px;
  min-width: 430px;
  max-width: 430px;
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 10px 32px 64px;
  border: 1px solid var(--primary-color);
  box-shadow: 0 8px 8px var(--shadow-color);
  transition: var(--transition-3s);
  overflow: hidden;
  margin-right: 6px;
  margin-left: 2.3px;

  /* 🔒 Freeze position */
  left: 0;
  right: 0;
  transform: translateZ(0);  /* isolate from layout shifts */
  will-change: transform;
}

.wrapper-container {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  overflow: visible;
}
/* FORMS */
.login-form, .register-form{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    transition: var(--transition-3s);
}
.register-form{
    left: 150%;
}

.auth-message {
    display: none;
    position: absolute;
    width: 220px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdf5 0%, #f3f7df 100%);
    border: 1px solid rgba(184, 208, 87, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    z-index: 11;
    pointer-events: none;
}

.auth-message.is-visible {
    display: block;
    animation: passwordHintFade 0.18s ease-out;
}

.auth-message::before {
    content: "";
    position: absolute;
    top: 24px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #f7faea;
    border-right: 1px solid rgba(184, 208, 87, 0.45);
    border-top: 1px solid rgba(184, 208, 87, 0.45);
    transform: rotate(45deg);
}

#loginAuthMessage,
#registerAuthMessage {
    top: 0;
    left: 0;
}

.auth-message__title {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.auth-message__text {
    color: #3f3f3f;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

/* INPUT FIELDS */
.input-box1{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 10px ;
    margin-top: 66px;
    margin-bottom: -4px;
    
   
}



.login-form #loginAuthMessage.is-visible + .input-box1 {
    margin-top: 8px;
}

.input-box{
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 10px ; 
    
   
}
.input-field {
    width: 100%;
    height: 40px;
    font-size: 16px;
    background: transparent;
    color: var(--black-color);
    padding: 10px;
    border: 1px solid var(--input-border-color);
    border-radius: 30px;
    outline: none;
    transition: var(--transition-3s);
    
}
.input-field:focus{
    border: 1px solid var(--primary-color);
}
.label{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-40%);
    color:#888;
    transition: 0.2s;
    cursor: text;
    font-size: 13px;
}
.input-field:focus ~ .label,
.input-field:valid ~ .label{
    top: 0;
    font-size: 14px;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 0 10px;
}
.input-field:valid ~ .label{
    color: var(--secondary-color);
}

.password-requirements {
    display: none;
}

#passwordHintCallout {
    position: absolute;
    display: none;
    width: 236px;
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdf5 0%, #f3f7df 100%);
    border: 1px solid rgba(184, 208, 87, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    z-index: 12;
    pointer-events: none;
}

#passwordHintCallout.is-visible {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: passwordHintFade 0.18s ease-out;
}

#passwordHintCallout::before {
    content: "";
    position: absolute;
    top: var(--password-callout-pointer-top, 26px);
    right: -8px;
    width: 16px;
    height: 16px;
    background: #f7faea;
    border-right: 1px solid rgba(184, 208, 87, 0.45);
    border-top: 1px solid rgba(184, 208, 87, 0.45);
    transform: rotate(45deg);
}

#passwordHintCallout .password-hint__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

#passwordHintCallout .password-hint__content {
    flex: 1;
}

#passwordHintCallout .password-hint__title {
    color: #5e6c22;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    line-height: 1.2;
}

#passwordHintCallout .password-hint__text {
    color: #4e4e4e;
    font-size: 12px;
    line-height: 1.45;
}

#passwordHintCallout .password-hint__list {
    margin: 8px 0 0;
    padding-left: 18px;
}

#passwordHintCallout .password-hint__list li {
    color: #5d5d5d;
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 3px;
}

@keyframes passwordHintFade {
    from {
        opacity: 0;
        transform: translate(-8px, -2px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@media only screen and (max-width: 1100px) {
    #passwordHintCallout {
        width: 210px;
    }
}

#SignUpBtn1:disabled,
#SignUpBtn2:disabled,
#SignUpBtn3:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: saturate(0.85);
}
.icon{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--secondary-color);
}
/* FORGOT PASSWORD & TERMS AND CONDITIONS */
.form-cols{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--primary-color);
    margin-right: 10px;
}

.form-cols a:hover{
  color: var(--hover-color);
}

.form-cols:hover{
  color: var(--black-color);
}

.col-1{
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    margin-left: 10px;
    transition: var(--transition-3s);
}
.col-1:hover{
  color: var(--gray-color);
}

.remember-me-wrap {
    cursor: pointer;
}

.remember-me-wrap input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.remember-me-wrap label {
    color: inherit;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-3s);
}

.col-2 a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition-3s);
}
/* SUBMIT BUTTON */
.btn-submit{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-3s);
}

.btn-submit:hover{
    gap: 15px;
}
.btn-submit i{
    font-size: 20px;
}
.btn-submit1{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-3s);
    margin-bottom: 20px;
}

.btn-submit1:hover{
    gap: 15px;
}
.btn-submit1 i{
    font-size: 20px;
}
/* SWITCH FORM */
.switch-form{
     text-align: center;
  margin-top: 10px;
  font-size: 14px;
    
}

.switch-form2{
     text-align: center;
  margin-top: 20px;
  font-size: 14px;
    
}

.switch-form a{
   color: #90b341;
  text-decoration: none;
}

.switch-form2 a{
   color: #90b341;
  text-decoration: none;
}

/* RESPONSIVE STYLES */
@media only screen and (max-width: 500px){
    .wrapper{
        margin: 20px;
    }
}




.form-container {
  background-color: white;
  padding: 30px 40px;
  border: 1px solid #dce4d0;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #0a0a0a;
}

.form-container h4 {
  margin-bottom: 10px;
  color: #888;
  font-weight: 400;
}

form {
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
select {
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #dce4d0;
  border-radius: 4px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row > * {
  flex: 1;
}

.checkbox-label {
 
  font-size: 14px;
  align-items: center;
  align-content: center;
  text-align: center;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
}

button {
  margin-top: 16px;
  padding: 12px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
  
}

button:hover {
  background-color: #a8c65d;
}

.signin-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.signin-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.image-section {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  vertical-align: top;
  background-color: var(--background-color);
  position: relative;
  text-align: center;
  top: 0;
  margin-left: 6px;
}

.image-section img {
  position: absolute;
  top: -41px;
  left: 0px;
  transition: opacity 1s;
  width: 460px;
  height: auto;
  margin-top: 0px;
}

.image-section .description {
  font-size: 18px;
  color: var(--black-color);
  width: 462px;
  max-width: 100%;
  text-align: justify;
  position: static;
  margin-top: 401px;
}

.image-section a {
  color: #a3cb38;
  text-decoration: none;
}

.logo-container {
  text-align: center;
  margin-top: 0;        /* No top margin */
    /* Space below the logo */
}

.logo-container img {
  width: 180px;     /* Adjust size if needed */
  height: 70px;
  display: inline-block;
}

.slogan {
  color: var(--gray-color);
  font-size: 14.3px;
  margin-left: 4px;
  
}

.navbar {
  display: flex;
  align-items: center;
  padding: -7px 32px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: Arial, Helvetica, sans-serif;
  justify-content: flex-start; 
}

/* LOGO AS IMAGE */
.logo img {
  height: 80px; /* Adjust size as needed */
  display: block;
  align-items: center;
  align-content: center;
  align-self: center;
  margin-left: 20px;
  margin-right: 0px;
  
 

}

/* CENTER NAV TEXT */
.nav-center {
  flex: 1;
  text-align: center;
}

.nav-center p {
  margin: 0;
  font-size: 1px;
  color: #333;
  white-space: nowrap;
}

/* BUTTONS */
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-right: 30px;
}

.nav-right button {
  padding: 8px 14px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
}

.About {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 5px solid var(--primary-color);
  margin-top: 2px;
  margin-bottom: 2px;
  justify-content: space-between;
}

.input-icon {
  position: absolute;
  right: 10px; /* Adjust to fit your input design */
  top: 50%;
  transform: translateY(-50%);
  width: 16px; /* Size of your icon */
  height: auto;
  
}
.nav-links {
  display: flex;
  gap: 30px;
  
  
  
}


.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--gray-color);
  display: flex;             /* Make a flex container */
  align-items: center;       /* Align icon and text vertically */
  gap: 6px;   
          /* Add space between icon and text */
}

.nav-wrapper{
  display: flex;
  align-items: center;
  gap: 30px;
  
  position: absolute;     /* take it out of flow */
  left: 30.5%;
  transform: translateX(-30.5%);
}


@media (max-width: 1500px) {
  .nav-wrapper {
    left: 28%;
    transform: translateX(-28%);
  }
}

.nav-links img {
  width: 20px;
  height: 20px;
  display: block;   
        /* Prevent inline spacing issues */
}


a:hover{
  color: var(--gray-color);
}


.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  border-top: 1px solid var(--shadow-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer-left {
  color: var(--black-color);
}

.footer-right a {
  margin-left: -5;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  margin-right: 16px;
}

.footer-right a:hover {
  color: var(--hover-color);
}



.nav-links a:hover{
  color: var(--primary-color)
}


.form-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-selector .form-btn {
  background-color: white;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
  text-indent: -4px; /* Move text slightly left for all buttons */
}

.form-selector .form-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

.form-selector .form-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.btn-icon {
  width: auto;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  position: relative;
  top: -1px;    /* Slightly lift the icon */
  left: -3px;   /* Move icon slightly to the left */
}

.user-form {
  text-align: center;
  margin-top: 11px;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  display: none;
}

.fade-in {
  opacity: 1 !important;
}

.user-form input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 90%;
  max-width: 350px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}



.register-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
}

.switch-form2 {
  text-align: center;
  margin-top: 10px;
}

.form-container {
  border: 1px solid var(--white-color);
  box-shadow: none;
  border-radius: 8px;
  padding: 0px;
  background-color: white;
  margin-top: -20px;
}

.form-selector .form-btn .btn-icon {
  margin: 0 !important;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}


select {
    /* Same as inputs */
  color: #888888;                /* Match placeholder/input text color */
  height: 40px !important;       /* Match input height */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  box-sizing: border-box;
  position: relative;
  top: 2px;
}


select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  height: 40px;               /* Ensure consistent height */
        /* Align text vertically */
  font-size: 13px;      
     /* Match font size */
     /* Ensures padding doesn't break height */
}

input:focus,
select:focus {
  border: 1px solid var(--primary-color);
  outline: none;
}

input,
select {
  transition: border-color 0.3s ease;
}


select {
  color: #888888;
}

select:valid {
  color: var(--black-color);
}

input::placeholder {
  color: #888888;
  font-size: 13px;
}


/* Make wrapper behave like input */
.password-wrapper {
  position: relative;
  flex: 1;
}

.password-wrapper input {
  width: 100%;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
}


 
/*Change focus color css */

/* GENERAL FOCUS COLOR FOR INPUTS, BUTTONS, DROPDOWNS */

/* CHANGE TEXT SELECTION COLOR */
::selection {
  background: var(--primary-color);
  color: white;
}

/* FIREFOX SPECIFIC FOCUS COLOR */
input:-moz-focusring {
  outline: 2px solid var(--primary-color);
}

/* OPTION SELECTED COLOR (for dropdowns) */
option:checked {
  background-color: var(--primary-color);
  color: white;
}

/* OVERRIDE AUTO-FILLED INPUT STYLING (for Chrome) */
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: var(--primary-color) !important;
}


input[name="first-name"],
input[name="last-name"],
select[name="signup-type"] {
  
  margin-top: 5px;
}

select[name="country"],
input[name="email"] {
 transform: translateY(-10px);
 width: 50px;

}

input[name="password"],
input[name="confirm-password"],
.password-wrapper img.toggle-password {
  transform: translateY(-19px);
}


.password-wrapper img.toggle-password {
  transform: translateY(-30px);
}


.checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -5px;
  font-size: 14px;
}

.checkbox-wrapper input[type="checkbox"] {
  display: none;
}

/* checkbox box */
.checkmark {
  height: 16px;
  width: 16px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* checkmark */
input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* policy text */
.checkbox-label {
  font-size: 14px;
  color: var(--black-color);
  display: inline-block;       /* allow the span to respond to hover */
  line-height: 2;            /* makes the hover area taller without padding */
          /* makes it feel interactive */
}

.policy {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.policy:hover {
  color: var(--hover-color);   /* hover color on any part of the text */
  cursor: pointer;
}

.multi-select-dropdown {
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.dropdown-btn {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23b8d057" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  width: 100%;
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  white-space: normal;
  display: flex;
  line-height: 1.4;
}

#selectedCuisines {
  max-width: 90%;
  word-wrap: break-word;
  color: #888888;
  font-size: 13px;
  width: 145px;
  height: 19px;
}

.dropdown-menuu {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-height: 105px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
  margin-top: 5px;
 
 
}

/* Scrollbar styling */
.dropdown-menuu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menuu::-webkit-scrollbar-thumb {
  background-color: #b8d057;
  border-radius: 10px;
}
.dropdown-menuu::-webkit-scrollbar-track {
  background: #f0f0f0;
}

/* Cuisine checkbox + label styling */
.dropdown-menuu label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
  color: black;
}

.dropdown-menuu input[type="checkbox"] {
  accent-color: #b8d057;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

/* Focus effects */
.focus-effect {
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

.other-option-wrapper {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}

#otherToggle {
  display: inline-block;
  padding: 4px 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #000;
  transition: border 0.2s;
}

#otherToggle:hover {
  border: 1px solid #ccc;
}

#otherInput {
  display: none;
  padding: 6px;
  border: 1px solid #b8d057;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  color: #000;
  width: 100%;
}


.multi-select-dropdown-country {
  position: relative;
  width: 100%;
  margin-top: 1px;
}

.dropdown-btn-country {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23b8d057" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  width: 100%;
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid #cfcece;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  white-space: normal;
  display: flex;
  line-height: 1.4;
}

#selectedCountries {
  max-width: 90%;
  word-wrap: break-word;
  color: #888888;
  font-size: 13px;
  width: 145px;
  height: 19px;
}

.dropdown-menu-country {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-height: 105px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
  margin-top: 5px;
}

.dropdown-menu-country::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu-country::-webkit-scrollbar-thumb {
  background-color: #b8d057;
  border-radius: 10px;
}
.dropdown-menu-country::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.dropdown-menu-country label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
  color: black;
}

.dropdown-menu-country input[type="checkbox"] {
  accent-color: #b8d057;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

.dropdown-btn-country.focus-effect {
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

.other-option-wrapper-country {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}

#otherCountryToggle {
  display: inline-block;
  padding: 4px 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #000;
  transition: border 0.2s;
}

#otherCountryToggle:hover {
  border: 1px solid #ccc;
}

#otherCountryInput {
  display: none;
  padding: 6px;
  border: 1px solid #b8d057;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  color: #000;
  width: 100%;
}




input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #EEEEEE;
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Checked state: black background + white checkmark */
input[type="checkbox"]:checked {
  background-color: var(--primary-color); /* black background */
  border-color: var(--primary-color);
}

/* White checkmark using a pseudo-element */
input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


/* COUNTRY DROPDOWN STYLES */
.multi-select-dropdown-country1 {
  position: relative;
  width: 100%;
  margin-top: 1px;
}

.dropdown-btn-country1 {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23b8d057' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  width: 100%;
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid #cfcece;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  white-space: normal;
  display: flex;
  line-height: 1.4;
  font-size: 13px;
}

#selectedCountries1 {
  max-width: 90%;
  word-wrap: break-word;
  color: #888888;
  font-size: 13px;
  width: 145px;
  height: 19px;
}

.dropdown-menu-country1 {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-height: 105px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 5px;
}

.dropdown-menu-country1::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu-country1::-webkit-scrollbar-thumb {
  background-color: #b8d057;
  border-radius: 10px;
}
.dropdown-menu-country1::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.dropdown-menu-country1 label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
  color: black;
}

.dropdown-menu-country1 input[type="checkbox"] {
  accent-color: #b8d057;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

.dropdown-btn-country1.focus-effect {
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

.other-option-wrapper-country {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}

/* Checkbox Styling */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #EEEEEE;
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--border-color);
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.signup-type-dropdown {
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.signup-dropdown-btn {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23b8d057" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  width: 100%;
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid #cfcece;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  white-space: normal;
  display: flex;
  line-height: 1.4;
}

#selectedSignupType {
  max-width: 90%;
  word-wrap: break-word;
  color: #888888;
  font-size: 13px;
  width: 85px;
  height: 19px;
}

.signup-dropdown-menu {
  display: none;
  position: absolute;
  width: 140px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-height: 105px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
  margin-top: 5px;
}

.signup-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.signup-dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #b8d057;
  border-radius: 10px;
}
.signup-dropdown-menu::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.signup-dropdown-menu label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
  color: black;
}

.signup-dropdown-menu input[type="checkbox"] {
  accent-color: #b8d057;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

/* Focus state */
.signup-dropdown-btn.focus-effect {
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

input:focus {
  outline: none !important;
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

/* Checkbox styling */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #EEEEEE;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
input[type="checkbox"]:checked {
  background-color: #b8d057;
  border-color: #b8d057;
}
input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}



.toggle-password {
  width: 17px;
  height: auto;
  margin-top: 3px;
  
  
  
}





.multi-select-dropdown-supplier {
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.dropdown-btn-supplier {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23b8d057" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  width: 100%;
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  white-space: normal;
  display: flex;
  line-height: 1.4;
}

#selectedSuppliers {
  max-width: 90%;
  word-wrap: break-word;
  color: #888888;
  font-size: 13px;
  width: 145px;
  height: 19px;
}

.dropdown-menu-supplier {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-height: 105px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
  margin-top: 5px;
}

/* Scrollbar styling */
.dropdown-menu-supplier::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu-supplier::-webkit-scrollbar-thumb {
  background-color: #b8d057;
  border-radius: 10px;
}
.dropdown-menu-supplier::-webkit-scrollbar-track {
  background: #f0f0f0;
}

/* Cuisine checkbox + label styling */
.dropdown-menu-supplier label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
  color: black;
}

.dropdown-menu-supplier input[type="checkbox"] {
  accent-color: #b8d057;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

/* Focus effects */
.focus-effect {
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

.other-option-wrapper {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}

#otherToggle {
  display: inline-block;
  padding: 4px 6px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #000;
  transition: border 0.2s;
}

#otherToggle:hover {
  border: 1px solid #ccc;
}

#otherInput {
  display: none;
  padding: 6px;
  border: 1px solid #b8d057;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  color: #000;
  width: 100%;
}


.multi-select-dropdown-country2 {
  position: relative;
  width: 100%;
  margin-top: 1px;
}

.dropdown-btn-country2 {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23b8d057' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  width: 100%;
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid #cfcece;
  border-radius: 5px;
  text-align: left;
  cursor: pointer;
  white-space: normal;
  display: flex;
  line-height: 1.4;
  font-size: 13px;
}

#selectedCountries2 {
  max-width: 90%;
  word-wrap: break-word;
  color: #888888;
  font-size: 13px;
  width: 145px;
  height: 19px;
}

.dropdown-menu-country2 {
  display: none;
  position: absolute;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-height: 105px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 5px;
}

.dropdown-menu-country2::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu-country2::-webkit-scrollbar-thumb {
  background-color: #b8d057;
  border-radius: 10px;
}
.dropdown-menu-country2::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.dropdown-menu-country2 label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
  color: black;
}

.dropdown-menu-country2 input[type="checkbox"] {
  accent-color: #b8d057;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
}

.dropdown-btn-country2.focus-effect {
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: #b8d057 !important;
  box-shadow: 0 0 4px #b8d057 !important;
}

.other-option-wrapper-country {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}

/* Checkbox Styling */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  background-color: #EEEEEE;
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--border-color);
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 0.5px;
    left: 4.5px;
    width: 2px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.image-section img {
  opacity: 1;
  transition: opacity 1s;
}

#foodSubmenu {
  margin-left: 21px; /* or padding-left if you prefer */
  transition: margin-left 0.2s ease;
 
}


.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  border-radius: 12px;
  width: fit-content;
  max-width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
   margin-top: 43px;
   border-radius: 20px;
   margin-left: 15.2px;
   
}

/* Modal title */
.modal-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}
.image-slider {
  height: 11cm;
  width: 29cm;
  overflow-y: scroll; /* Needed for scrollTo() to work */
  scroll-behavior: smooth;
  position: relative;

  /* Hide scrollbar for Firefox */
  scrollbar-width: none;

  /* Hide scrollbar for WebKit (Chrome, Edge, Safari) */
  -ms-overflow-style: none;
}

.image-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.slide {
  height: 11cm;
  width: 100%;
  flex-shrink: 0;
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
 
}

.up-btn, .down-btn {
  background-color: black;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Fixed size image box */
.scroll-box {
  margin-top: 100px;
  width: 24.6cm;
  height: 13.2cm;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color);
}

/* Images */
.scroll-box img {
  width: 24.6cm ;
  height: 13.2cm;
  border-radius: 20px;
  
}

/* Circle scroll buttons (outside the scroll box) */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-color);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Left and right button positions */
.scroll-left {
  left: calc(50% - 14cm - 1px); /* 29cm/2 + offset */
}

.scroll-right {
  right: calc(50% - 14cm - 1px);
}

.scroll-btn.disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}

.scroll-btn.disabled-hover {
  pointer-events: none;
  opacity: 0.5;
}

.circle-indicators {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  bottom: 2px;
  width: 100%;
}

.circle {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
}

.circle.active {
  background-color: var(--primary-color); /* or your primary color */
}


/* Restaurant Modal Styling */
.modalr {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

/* Restaurant Modal content box */
.modal-contentr {
  background-color: #fff;
  border-radius: 20px;
  width: fit-content;
  max-width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  margin-top: 43px;
  margin-left: 15.2px;
  
}

/* Close button */
.close-btnr {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

/* Scrollable image box for restaurant */
.scroll-box {
  margin-top: 100px;
  width: 24.6cm;
  height: 13.2cm;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
}

/* Images inside scroll-box */
.scroll-box img {
  width: 24.6cm;
  height: 13.2cm;
  border-radius: 20px;
}

/* Scroll buttons (outside box) */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-color);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: var(--primary-color);
  color: white;
}

.scroll-left {
  left: calc(50% - 14cm - 1px);
}

.scroll-right {
  right: calc(50% - 14cm - 1px);
}

.scroll-btn.disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}

.scroll-btn.disabled-hover {
  pointer-events: none;
  opacity: 0.5;
}

/* Circle indicators */
.circle-indicators {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  bottom: 2px;
  width: 100%;
}

.circle {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
}

.circle.active {
  background-color: var(--primary-color);
}

/* Animation keyframes */
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* Supplier Modal background */
.modals {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

/* Supplier Modal content box */
.modal-contents {
  background-color: #fff;
  border-radius: 20px;
  width: fit-content;
  max-width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  margin-top: 43px;
  margin-left: 15.2px;
 
}

/* Close button */
.close-btns {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;

}

/* Scrollable image box */

  .scroll-box {
    margin-top: 100px;
    width: 23.9cm;
    height: 13.2cm;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: flex
;
    flex-direction: column;
    margin: auto;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    margin-left: -16px;
}


/* Images inside scroll box */
.scroll-box img {
  width: 23.9cm;
  height: 13.2cm;
  border-radius: 20px;
  object-fit: cover;
}

/* Scroll buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-color);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Button positioning */
.scroll-left {
  left: calc(50% - 14cm - 1px);
}

.scroll-right {
  right: calc(50% - 14cm - 1px);
}

/* Button disabled states */
.scroll-btn.disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}

.scroll-btn.disabled-hover {
  pointer-events: none;
  opacity: 0.5;
}

/* Circle indicators */
.circle-indicators {
  text-align: center;
  margin-top: 20px;
  position: absolute;
  bottom: 2px;
  width: 100%;
}

.circle {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 4px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
}

.circle.active {
  background-color: var(--primary-color);
}

/* Animation */
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}


#contactModal.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

/* Modal Box */
.contact-content {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  height: 500px;
  position: relative;
  overflow: visible;
  animation: slideFadeIn 0.4s ease-out;
  margin-left: -2px;
}

/* Close Button */
.close-btn-contact {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
}

.close-btn-contact:hover {
color: var(--button-hover);
}

/* Form Heading */
#contactForm h2 {
  margin-top: 6px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #000000;
  text-align: center;
  font-weight: 500;
}

.contact-form-message {
  display: none;
  position: absolute;
  top: 74px;
  left: calc(100% + 18px);
  width: 238px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfdf5 0%, #f3f7df 100%);
  border: 1px solid rgba(184, 208, 87, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  z-index: 12;
  pointer-events: none;
}

.contact-form-message.is-visible {
  display: block;
  animation: passwordHintFade 0.18s ease-out;
}

.contact-form-message::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: #f7faea;
  border-left: 1px solid rgba(184, 208, 87, 0.45);
  border-bottom: 1px solid rgba(184, 208, 87, 0.45);
  transform: rotate(45deg);
}

.contact-form-message__title {
  margin-bottom: 6px;
  color: #5e6c22;
  font-size: 15px;
  font-weight: 700;
}

.contact-form-message__text {
  color: #4e4e4e;
  font-size: 12px;
  line-height: 1.5;
}

@media only screen and (max-width: 860px) {
  .contact-form-message {
    top: -112px;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, calc(100% - 24px));
  }

  .contact-form-message::before {
    top: auto;
    bottom: -8px;
    left: 50%;
    margin-left: -8px;
    border-left: none;
    border-bottom: none;
    border-right: 1px solid rgba(184, 208, 87, 0.45);
    border-top: 1px solid rgba(184, 208, 87, 0.45);
  }
}

/* Input Group */
.styled-form .input-group {
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
}

/* Labels */
.styled-form label {
  font-size: 13px;
  color: #888888;
  
}

/* Inputs, Textarea */
.styled-form input[type="text"],
.styled-form input[type="email"],
.styled-form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}

.styled-form input:focus,
.styled-form textarea:focus {
  border-color: var(--primary-color);
}

/* Textarea */
.styled-form textarea {
  resize: vertical;
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 5px;
}

.checkbox-group label {
  font-size: 13px;
  color: #888888;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10.8px;
  margin-bottom: 30px;
}

.submit-btn:hover {
  background-color: var(--button-hover);
}

/* Fade Animation */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-dropdown {
  position: relative;
  width: 100%;
  z-index: 10;
}

.custom-dropdown button {
  width: 100%;
  margin-bottom: 19px;
  margin-top: 7px;
  font-size: 13px;
  color: black;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}



.custom-dropdown .dropdown-menue {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 6px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 20;
}

.custom-dropdown .dropdown-menue li {
  padding: 10px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
  cursor: pointer;
}



.custom-dropdown .dropdown-menue input[type="checkbox"] {
  margin-right: 10px;
  pointer-events: none;
}


.custom-dropdown button:focus,
.custom-dropdown button:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px var(--primary-color);
}

#contactDropdownBtn i {
  font-size: 13px;
  
  
}


#SignUpBtn1 {
  display: inline-flex;
  align-items: center;     /* vertically center icon and text */
  justify-content: center; /* horizontally center content inside button */
  gap: 10px;                /* space between text and icon */
  padding: 10px 20px;      /* top/bottom | left/right */
  transition: all 0.3s ease; /* smooth transition for padding and gap */
}

#SignUpBtn1:hover {
  gap: 16px;               /* bigger gap between text and icon on hover */
  padding: 10px 40px;      /* expand left & right padding on hover */
}

#SignUpBtn1 .btn-icon {
  width: 16px;
  height: 16px;
}







#SignUpBtn2 {
  display: inline-flex;
  align-items: center;     /* vertically center icon and text */
  justify-content: center; /* horizontally center content inside button */
  gap: 10px;                /* space between text and icon */
  padding: 10px 20px;      /* top/bottom | left/right */
  transition: all 0.3s ease; /* smooth transition for padding and gap */
}

#SignUpBtn2:hover {
  gap: 16px;               /* bigger gap between text and icon on hover */
  padding: 10px 40px;      /* expand left & right padding on hover */
}

#SignUpBtn2 .btn-icon {
  width: 16px;
  height: 16px;
}




#SignUpBtn3 {
  display: inline-flex;
  align-items: center;     /* vertically center icon and text */
  justify-content: center; /* horizontally center content inside button */
  gap: 10px;                /* space between text and icon */
  padding: 10px 20px;      /* top/bottom | left/right */
  transition: all 0.3s ease; /* smooth transition for padding and gap */
}

#SignUpBtn3:hover {
  gap: 16px;               /* bigger gap between text and icon on hover */
  padding: 10px 40px;      /* expand left & right padding on hover */
}

#SignUpBtn3 .btn-icon {
  width: 16px;
  height: 16px;
}


.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 13px;
  color: black; /* Typed text */
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color:#888888; /* Placeholder color */
}


.dropdown-arrow {
  color: var(--primary-color); /* Replace with your green if needed */
  font-size: 15px;
}

#selectedContactRelation.placeholder {
  color: #888888;
}

/* Selected option becomes black */
#selectedContactRelation {
  color: black;
}

#contactDropdownMenue li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  margin-bottom: -6px;
  padding: 5px 10px;
  cursor: pointer;
}

#contactDropdownMenue input[type="checkbox"] {
  margin: 0;
  pointer-events: none;
  accent-color: var(--primary-color); /* Optional: checkbox color */
}

#contactDropdownMenue label {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  color: black;
   transform: translateY(1px); /* 👈 nudges text downward slightly */
}

#contactMessage {
  resize: none;
}

.char-count {
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

.char-count.primary {
  color: var(--primary-color); /* your primary color */
}

#tahiScrollBox,
#rstScrollBox,
#supScrollBox {
  scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;        /* IE/Edge */
}

#tahiScrollBox::-webkit-scrollbar,
#rstScrollBox::-webkit-scrollbar,
#supScrollBox::-webkit-scrollbar {
  display: none;                   /* Chrome/Safari */
}


.nav-right {
  position: relative;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 30px;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: max-content;
  overflow: hidden;       
  max-height: none;        
  border-radius: 4px;
}

/* Dropdown items */
.dropdown-item {
  padding: 5px 10px;       
  color: var(--hover-color);
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* Hover color: custom gray */
.dropdown-item:hover {
  color: var(--primary-color);                        
}


.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

/* Modal image container like modal-contents */
.modal .image-container {
width: 23.9cm;
    height: 13.21cm;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 45px;
  margin-left: 0px;
  border-radius: 20px;
  border: 1px solid var(--primary-color);
  background-color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.char-count{
    text-align: right;
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}
/* Image box styling (acts like .scroll-box) */
.modal .image-container img {
  width: 24cm;
  height: 13.2cm;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Scroll buttons (same for all) */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-color);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.scroll-btn:hover {
  background: var(--primary-color);
  color: white;
}

.scroll-left {
  left: calc(50% - 14cm - 1px);
}

.scroll-right {
  right: calc(52% - 14cm - 1px);
}

.scroll-btn.disabled,
.scroll-btn.disabled-hover {
  pointer-events: none;
  opacity: 0.5;
 
}

/* Circle indicators */

/* Close button shared style (position absolute top right) */
.modal .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
}

/* Optional: slide-in animation */
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}




.modale {
      display: none;
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .modal-contente {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      width: 90%;
      max-width: 600px;
      max-height: 80vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 0 20px rgba(0,0,0,0.25);
      height: 500px;
      margin-top: 45px;
      width: 400px;
    }

/* Close button (X) */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary-color);
}


/* Section box styling */
.policy-box {
  border: 1px solid var(--border-color);
  border-radius: 13px;
  margin-bottom: 20px;
  overflow: hidden;
  margin-top: 14px;
  
}

/* Header clickable */
.policy-box h3 {
  margin: 0;
  padding: 11px 20px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  
  user-select: none;
}

/* Hidden content initially */
.policy-box p {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
}

/* Show content when active */
.policy-box.active p {
  display: block;
}

/* Close button */
.modal-close-btn {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.modal-close-btn:hover {
  background-color: var(--button-hover);
}

.modale h2{
  font-weight: 500;
}


/* Dropdown Menu */
.dropdown-menue {
  display: none;
  position: absolute;
  width: 100%;
  height: 75px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 150px;
  overflow-y: auto;
}


.dropdown-menue li {

  cursor: pointer;
  display: flex;
  align-items: center;
 
}


.legal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.legal-modal-box {
  margin-top: 43px;
  margin-left: 15px;
  background: #fff;
  width: 24.6cm;
  height: 13.2cm;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: legalFadeUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Modal Header */
.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e1e1e1;
}

.legal-modal-header h2 {
  
  font-size: 16px;
  color: #000;
  text-align: center;
  font-weight: 500;
 
}

.legal-close-icon {
  top: 12px;
  right: 18px;
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
}

.legal-close-icon:hover{
color: var(--button-hover);
}

/* Accordion List Container */
.legal-accordion-container {
  padding: 0 0 20px;
  overflow-y: auto;
  flex: 1;
}

/* Accordion Item */
.legal-accordion-item {
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  height: 52px;
}

/* Toggle Button */
.legal-accordion-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  cursor: pointer;
}

/* Arrow Color */
.legal-accordion-toggle span {
  transition: transform 0.3s ease;
  color: #cbdc39;
  font-size: 18px;
}

.legal-accordion-toggle.active span {
  transform: rotate(180deg);
}

/* Accordion Body */
.legal-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
  background-color: #fafafa;
  font-size: 14px;
}

/* Footer */
.legal-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #e1e1e1;
  text-align: right;
}

.legal-close-btn {
  background-color: #cbdc39;
  color: #333;
  border: none;
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.legal-close-btn:hover {
  background-color: #b0c42e;
}

/* Fade-in Animation */
@keyframes legalFadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hide footer when modal is open */
body.legal-modal-open footer {
  display: none !important;
}


.custom-accordion-btn i {
  color: var(--primary-color);
  font-size: 10px;
  
}

.custom-accordion-btn:hover i {
  color: var(--button-hover); /* color on hover */
}




.custom-policies-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.custom-policies-box {
 background: white;
    width: 23.9cm;
    height: 13.2cm;
    border-radius: 8px;
    display: flex
;
    flex-direction: column;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 46px;
    margin-left: 3px;
    border-radius: 20px;
    animation: slideFadeIn 0.4s ease-out;
}

.custom-policies-box,
.custom-popup-box {
    position: absolute;
    top: 190px; /* fixed distance from top */
    left: 50%;  /* center horizontally */
    transform: translateX(-50%); /* adjust for width */
    margin: 0; /* remove default margins */
    
}

.custom-policies-header {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: black;
  margin-top: -5px;

}

.custom-close-icon {
  position: absolute;
  right: 18px;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
  color: var(--primary-color);
}

.custom-close-icon:hover {
  color: var(--button-hover);
}





.custom-accordion-wrapper {
  flex: 1 1 auto;
  overflow: hidden;
  margin-top: 20px;
}

.custom-accordion-item {
  border-bottom: 1px solid #ddd;
}

.custom-accordion-btn {
  background: white;
  cursor: pointer;
  padding: 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-color);
}

.custom-accordion-btn:hover {
  color: var(--primary-color);
}
.custom-accordion-btn:active {
  color: var(--primary-color);
}

.custom-accordion-btn i {
  transition: transform 0.3s ease;
}

.custom-accordion-btn.active i {
  transform: rotate(180deg);
}

.custom-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  padding: 0 16px;
}

.custom-accordion-content.open {
  
  height: 200px;
  margin-bottom: 10px;
  margin-top: -2px;
}
.custom-popup-overlay h2{/*titles  /*/
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
  
}


.custom-popup-overlay h3{
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
  margin-left: 15px;
  margin-top: 7px;
  text-indent: -5px;
}



.custom-content-scroll::-webkit-scrollbar {
   max-height: 50px; /* makes container shorter vertically */
  overflow-y: scroll; /* shows vertical scrollbar */
}

.custom-content-scroll {
  max-height: 200px;     /* adjust container height */
  overflow-y: scroll;    /* vertical scrollbar */
  padding-bottom: 10px;  /* fake gap at bottom to shorten scrollbar track */
  margin-right: 2px;
}

.custom-content-scroll::-webkit-scrollbar {
  width: 8px;            /* scrollbar thickness */
}

.custom-content-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.custom-content-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.custom-content-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--button-hover);
}
.custom-close-btn-bottom {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  margin-top: 11px;
  align-self: right;
  width: 3cm;
  margin-left: 750px;
  font-weight: 500;
  text-align: center;
}

.custom-close-btn-bottom:hover {
  background: var(--button-hover);
}


.custom-accordion-btn.active {

  color: var(--primary-color);
}


.custom-popup-overlay h3 i {
  font-size: 4px; 
  vertical-align: middle; 
  margin-right: 4px;
  color: var(--primary-color);
}

.custom-popup-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000; /* above your main modal */
  display: none;
  align-items: center;
  justify-content: center;
}

/* Inner popup box */
.custom-popup-box {
    background: #fff;
    padding: 20px; /* match policies box */
    width: 23.9cm;    
    height: 13.2cm;   
    border-radius: 20px;
   
    margin: 0 auto 0 auto; /* match the same vertical spacing */
    box-sizing: border-box;
    overflow-y: auto;
}
  


/* Close icon inside popup */
.custom-popup-close {
  position: absolute;
  right: 31px;
  top: 15px;
  font-size: 14px;
  cursor: pointer;
  color: var(--primary-color);
 
}

.custom-popup-closee{
  position: absolute;
  right: 31px;
  font-size: 14px;
  cursor: pointer;
  color: var(--primary-color);
  margin-bottom: 10px;

}


.custom-popup-closee:hover{
  color: var(--button-hover);
}



.custom-popup-close:hover{
  color: var(--button-hover);
}






.custom-popup-box::-webkit-scrollbar {
  width: 8px;            /* scrollbar thickness */
  border-radius: 60px;
  height: 10px;
  margin-right: 30px;
  
}
.custom-popup-box::-webkit-scrollbar-track {
  
  border-radius: 40px 40px 40px 40px;
  height: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  
}

.custom-popup-box::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.custom-popup-box::-webkit-scrollbar-thumb:hover {
  background: var(--button-hover);
  margin-right: 30px;
}


.custom-close-btn-bottomback {
  background: var(--white-color);
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 1px;
  margin-top: 8px;
  align-self: right;
  margin-left: 814px;
  font-weight: 500;
  text-align: center;
}

.custom-close-btn-bottomback:hover {
  color: var(--button-hover);
}


.custom-popup-overlay2 {
 
   display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2000; /* above your main modal */
  display: none;
  align-items: center;
  justify-content: center;
 
}

.custom-popup-content2 {
  background-color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  height: 500px;
  position: fixed;              /* Always pinned to viewport */
  top: 53%;                     /* Vertically center */
  left: 50%;                    /* Horizontally center */
  transform: translate(-50%, -50%); /* Perfect center trick */
  opacity: 0;                   /* Start invisible */
 animation: slideFadeIn 0.4s ease-out forwards;  /* Only fade in */
  text-align: center;
}

/* ✅ Fade in only — no transform to override centering */
@keyframes slideFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.custom-popup-content2 h2 {
   margin-top: -4px;
  margin-bottom: 153px;
  font-size: 18px;
  color: #000000;
  text-align: center;
  font-weight: 500;
}


.custom-popup-content2 p {
  margin-bottom: 12px;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.custom-popup-content2 form {
  display: flex;
  flex-direction: column;
}

.custom-popup-content2 input { 
  margin-bottom: 12px;
}

.custom-popup-content2 button {
  margin-top: 10px;
}

#closeForgetBtn2 {
  position: absolute;
  top: 10px; right: 10px;
}



.close-btn-forget {
   position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  color: var(--primary-color);
  cursor: pointer;
}











#popup9 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  
}

#popup9 .container9 {
  pointer-events: auto; /* Popup content is clickable */
}

#popup9 {
  pointer-events: auto; /* Overlay detects clicks */
}


/* Popup9 content */
.container9 {
      background-color: #fff;
    padding: 16px 16px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    height: 500px;
    position: relative;
    animation: slideFadeIn 0.4s ease-out;
    text-align: center;
    margin-left: 0.2px;
    margin-top: 43px;
}

.logo9 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2px;
  font-weight: 500;
}

.logo9 img {
  height: 70px;
    margin-top: -10px;
    font-weight: 500;
    width: 180px;
}


.subtitle9 {
    font-size: 14.3px;
    color: var(--gray-color);
    margin-bottom: 24px;
    margin-top: -16px;
    font-weight: 500;
    margin-top: 3px;
}

.message9 {
  background: #58595b14;
    border-left: 4px solid var(--primary-color);
  color: black;
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: justify;
  font-weight: 500;
}

.note9 {
  margin-bottom: -6px;
  font-size: 14px;
  color: var(--black-color);
  font-weight: 500;
}

.resend-btn9 {
background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 12px 0px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
    width: 138px;
    text-align: center;
}

.resend-btn9:hover {
  background: var(--button-hover);
  font-weight: 500;
}

@media (max-width: 480px) {
  .container9 {
    padding: 30px 20px;
  }
  .logo-text9 {
    font-size: 24px;
  }
}

.edit9 {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--gray-color);
    font-size: 14px;
    text-decoration: none;
    font-family: inherit;
    background: none;
    margin-top: 0px;
    justify-content: center;
    transition: 0.3s;
    width: 88px;
    text-align: center;
    margin-left: 141px;
}

.edit9:hover {
  color: var(--primary-color);
}

.edit9 img {
  width: 16px;
  height: 16px;
}


.close-btn-forget9 {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}



pre {
  all: unset;         /* remove all browser default styles */
  display: none;
}
