html, body {
  height: 100%;
  margin: 0;
}
body {
  font-family: 'Inter', sans-serif;
}
/* Custom scrollbar for better aesthetics on Desktop */
@media (min-width: 1024px) {
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 20px;
  }
  .dark ::-webkit-scrollbar-thumb {
    background-color: #4b5563;
  }
}

/* Hide scrollbar on Mobile for app-like feel */
@media (max-width: 1023px) {
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
}

/* Smooth fade for SSO options */
.sso-enter {
  opacity: 0;
  transform: translateY(-10px);
}
.sso-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms, transform 300ms;
}


.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.company-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    background-color: white;
}

    .company-box:hover {
        background-color: #f0f0f0;
    }

.icon {
    font-size: 24px;
    color: green;
    margin-right: 10px;
}