/* Add this to your custom styles.css file */
@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.font-aboreto {
    font-family: 'Aboreto', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.toggle-container {
  display: flex;
  background: linear-gradient(to right, #d9a15b, #c58a4e);
  border-radius: 30px;
  padding: 2px;
}

.toggle-btn {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background-color: white;
  color: #c58a4e;
}

.toggle-content {
  display: none;
  background: #c58a4e;
  color: white;
  padding: 20px;
  margin-top: 10px;
  border-radius: 10px;
}

.toggle-content.active {
  display: block;
}

input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: black !important;
  transition: background-color 9999s ease-in-out 0s;
}
input.autofill-white:-webkit-autofill {
  -webkit-text-fill-color: white !important;
}

.no-scrollbar::-webkit-scrollbar {
  display: none !important;
}


