/* custom-toast.css */
.custom-toast-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: #ffffff; /* Neutral background */
  color: #333333; /* Dark text for contrast */
  border: 2px solid; /* Add border for type-based color */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.custom-toast-container.success {
  border-color: #4caf50; /* Green border for success */
}

.custom-toast-container.error {
  border-color: #e57373; /* Red border for error */
}

.custom-toast-container.info {
  border-color: #64b5f6; /* Blue border for info */
}

.custom-toast-container.warning {
  border-color: #ffb74d; /* Amber border for warning */
}

.custom-toast-icon {
  font-size: 20px;
  color: inherit; /* Inherit border color for consistency */
}

.custom-toast-message {
  flex-grow: 1;
  word-wrap: break-word;
}

/* Remove React Toastify default styles */
.Toastify__toast {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.login-with-google-btn {
  padding: 10px 8px 8px 8px;
  border: none;
  border-radius: 8px;
  cursor: pointer;

  font-weight: 600;

  background-repeat: no-repeat;
  background-position: 12px 11px;
  background-color: transparent;
  border: 1px solid #808080;
  width: 100%;
  font-family: "Poppins";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666666;
}

.login-with-microsoft-btn {
  cursor: pointer;
  padding: 10px 8px 8px 8px;
  border: none;
  border-radius: 8px;
  font-weight: 600;

  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: 12px 11px;
  background-color: transparent;
  border: 1px solid #808080;
  width: 100%;
  font-family: "Poppins";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666666;
}

.forgot-password-button {
  width: 100%;
  text-align: right;
  margin-bottom: 12px;
}

.login-header {
  margin-bottom: 24px;
  margin-top: 30px;
}

.social-logo {
  margin-right: 10px;
  margin-left: -10px;
}

.social-container {
  width: 100%;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

.containerStyle {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
  width: fit-content;
  justify-content: center;
  margin: 15px 20px;
}

.logoStyle {
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 20px 40px 20px;
  gap: 1;
}

.titleStyle {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 21px !important;
  line-height: 140%;
  text-align: center;
  color: #000;
  margin-bottom: 15px !important;
}

.subTitleStyle {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  margin-bottom: 30px !important;
  color: #42526b !important;
}

.spanStyle {
  font-family: Poppins;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

.effiLogoForm {
  display: flex;
  align-items: center !important;
  justify-items: center !important;
  text-align: center;
  width: 141px;
  height: 36px;
  gap: 4px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.formContainerStyle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  align-items: center;
}

.sticky_footer {
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
  padding: 16px; /* 2 * 8px */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px; /* 2 * 8px */
  z-index: 12;
}
.formContainer {
  position: relative;
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  padding: 16px;
  margin: 16px;
}

.backButton {
  border: 1px solid #667085 !important;
  border-radius: 50px;
  color: #667085 !important;
}
.deleteButton {
  position: absolute;
  top: 0% !important;
  left: 97%;
  z-index: 10;
  margin-bottom: -50px !important;
}

.formContainer {
  position: relative;
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  padding: 16px;
  margin: 16px;
}

.form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.formHeading {
  margin: 0;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: start;
  color: #000000;
  letter-spacing: 0%;
  padding-bottom: 10px;
  padding-top: 0px;
  padding-left: 0px;
}

body {
  background: #f9f9f9 !important;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

