/*!***************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/Component/Auth/AuthContainer.module.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************/
.AuthContainer_container__PGSUg {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  }
/*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/Component/Auth/AuthFormCard.module.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************/
.AuthFormCard_card__W9Kye {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
  }
/*!********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/Component/FormElement/FormElement.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************/
.FormElement_button__ccG2Q {
    width: 100%;
    padding: 0.75rem;
    background-color: #3b82f6;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .FormElement_button__ccG2Q:hover {
    background-color: #2563eb;
  }


  .FormElement_checkboxGroup__Rwyrf {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .FormElement_checkbox__EFw4_ {
    margin-right: 0.5rem;
    margin-top: -8px;
  }
  
  .FormElement_label__5MosB {
    font-size: 0.9rem;
    color: #333;
  }

  .FormElement_inputGroup__Cwjhk {
    margin-bottom: 1.5rem;
  }
  
  .FormElement_label__5MosB {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
  }
  
  .FormElement_input__xBJ_a {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    color: #333;
  }
  
  .FormElement_input__xBJ_a:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }
  
  .FormElement_error__Ar2F2 {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }
  
  .FormElement_linkText__fnIJh {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
  }
  
  .FormElement_link__OC_K2 {
    color: #3b82f6;
    text-decoration: none;
  }
  
  .FormElement_link__OC_K2:hover {
    text-decoration: underline;
  }
/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/Component/Toast/toast.module.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
/* Base styles for all toast containers */
.toast_toastContainerSuccess__P91DX,
.toast_toastContainerError__9d1Vo,
.toast_toastContainerInfo__ieS1X,
.toast_toastContainerWarning__F7jk2 {
  display: flex;
  align-items: center;
  min-width: 400px;
  min-height: 75px;
  background-color: white; /* Ensure white background */
  border: none; /* Remove border from all sides */
  border-left: 5px solid; /* Apply border only on the left */
  border-radius: 4px; /* Optional: Add slight border radius for a polished look */
  padding: 10px 15px; /* Add padding for spacing */
  box-shadow: 0px 8px 16px 0px #00000014;
  line-height: 1.2;
}

/* Color-coded left borders matching the image */
.toast_toastContainerSuccess__P91DX {
  border-left-color: var(--color-sign-success); /* Green border */
  background-color: var(--color-white-surface) !important;
  color: var(--color-sign-success) !important;
}

.toast_toastContainerError__9d1Vo {
  border-left-color: var(--color-sign-negative); /* Red border */
  background-color: var(--color-white-surface) !important;
  color: var(--color-sign-negative) !important;
}

.toast_toastContainerInfo__ieS1X {
  border-left-color: var(--color-sign-positive); /* Blue border */
  background-color: var(--color-white-surface) !important;
  color: var(--color-sign-positive) !important;
}

.toast_toastContainerWarning__F7jk2 {
  border-left-color: var(--color-sign-warning); /* Orange border */
  background-color: var(--color-white-surface) !important;
  color: var(--color-sign-warning) !important;
}

/* Style the toast message text */
.toast_toastContainerSuccess__P91DX .toast_toast__r7iUE,
.toast_toastContainerError__9d1Vo .toast_toast__r7iUE,
.toast_toastContainerInfo__ieS1X .toast_toast__r7iUE,
.toast_toastContainerWarning__F7jk2 .toast_toast__r7iUE {
  flex: 1; /* Allow the message to take up remaining space */
  color: #333; /* Dark text color */
  font-weight: 500; /* Slightly bold text */
  font-size: 16px; /* Adjust font size */
  margin-left: 10px; /* Space between icon and text */
}

/* Style the icon container */
.toast_toast_icon_div__ZKckd {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; /* Match the SVG size */
  height: 34px;
}

/* Style the close button */
.toast_material-icons__ZTCps {
  cursor: pointer;
  margin-left: auto; /* Push the close button to the right */
}

.toast_Toastify__toast__hwIhz {
    background-color: var(--color-white-surface) !important;
    /* color: var(); */
}
.toast_material_icons__Hqk9K {
    position: absolute;
    top: 2px;
    right: 4px;
}
/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[7].use[3]!./src/styles/Auth.module.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
.Auth_logo__q3Zea {
  font-size: var(--fs-sub-heading);
  font-weight: 700;
  color: var(--color-white-surface);
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 8px 32px;
  background-color: var(--color-primary-dark-blue);
  width: -moz-fit-content;
  width: fit-content;
}

.Auth_title__XYQC0 {
  font-size: var(--fs-sub-heading);
  font-weight: 600;
  color: #333;
  margin: 25px 0 30px 0;
}

.Auth_error__tYrBg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.Auth_stepContainer___biqW {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  width: 100%;
}

.Auth_step__nvE2f {
  display: flex;
  align-items: center;
  flex: 1;
}

.Auth_stepCircle__vx_8D {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Auth_stepLine__ctHfx {
  flex: 1;
  height: 2px;
  background-color: var(--color-light-surface);
  margin: 0 8px;
}

.Auth_active__OYgTm {
  background-color: var(--color-primary-blue);
  color: var(--color-white-surface);
}

.Auth_inactive__nJsbo {
  background-color: var(--color-light-surface);
  color: var(--color-font-secondary);
}

.Auth_spinnerWrapper__Pso82 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.Auth_spinner__3mepE {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: Auth_spin__6PsAM 0.6s linear infinite;
}

@keyframes Auth_spin__6PsAM {
  to {
    transform: rotate(360deg);
  }
}

.Auth_phoneInputWrapper__naaPH {
  margin-bottom: 1rem;
}

.Auth_label__bpOi2 {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.Auth_phoneInputGroup__N7Fai {
  position: relative;
}

.Auth_phoneInputContainer__UwJ7G {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

.Auth_countrySelector__QXd4U {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px;
  cursor: pointer;
  border-right: 1px solid #eee;
}

.Auth_flagImage__BFARS {
  width: 20px;
  height: 16px;
}

.Auth_dropdownArrow__k8O6K {
  font-size: 10px;
  margin-left: 4px;
  color: #666;
}

.Auth_phoneNumberInput__1TGcT {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.Auth_dropdownMenu__98BZu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.Auth_searchWrapper__Pa_eh {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.Auth_searchInput__YKFir {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.Auth_countryList__HOq5x {
  overflow-y: auto;
  flex: 1;
}

.Auth_dropdownItem__F4rqy {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  cursor: pointer;
}

.Auth_dropdownItem__F4rqy:hover {
  background: #f0f0f0;
}

.Auth_noResults__IoqTE {
  padding: 8px;
  color: #666;
  font-size: 14px;
}

.Auth_errorBorder__1mSWF {
  border-color: red;
}

.Auth_error__tYrBg {
  color: red;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

