body {
    background-image: url('background.svg')!important;
    background-size: cover!important;
}

.hi {
    opacity: 1!important;
    background-color: transparent!important;
}

.clear {
    background-color: transparent!important;
}

.clear:hover {
    color: #a5b6fb!important;
    background-color: #25366d!important;
}

.infoBox {
    margin-bottom: 20px!important;
}

/* When the user hovers, the mouse should appear to click */

.submit-button {
    cursor: pointer!important;
}

.logo {
    width: auto!important;
    height: 100px!important;
    padding: 7px!important;
    margin: 0px!important;
}

.signOnTitle {
    text-align: center;
    padding: 10px!important;
    margin: 0px!important;
}

.signOnDescription {
    text-align: center;
    padding: 10px!important;
    margin: 0px!important;
}

.next-button {
    text-align: center;
    padding: 18px!important;
    padding-right: 45%!important;
    padding-left: 45%!important;
}

.button-container {
    padding-top: 20px!important;
    width: 100%!important;
    text-align: center!important;
}

.bs-icon {
    --bs-icon-size: .75rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: var(--bs-icon-size);
    width: calc(var(--bs-icon-size) * 2);
    height: calc(var(--bs-icon-size) * 2);
    color: var(--bs-primary);
  }
  
  .bs-icon-xs {
    --bs-icon-size: 1rem;
    width: calc(var(--bs-icon-size) * 1.5);
    height: calc(var(--bs-icon-size) * 1.5);
  }
  
  .bs-icon-sm {
    --bs-icon-size: 1rem;
  }
  
  .bs-icon-md {
    --bs-icon-size: 1.5rem;
  }
  
  .bs-icon-lg {
    --bs-icon-size: 2rem;
  }
  
  .bs-icon-xl {
    --bs-icon-size: 2.5rem;
  }
  
  .bs-icon.bs-icon-primary {
    color: var(--bs-white);
    background: var(--bs-primary);
  }
  
  .bs-icon.bs-icon-primary-light {
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), .2);
  }
  
  .bs-icon.bs-icon-semi-white {
    color: var(--bs-primary);
    background: rgba(255, 255, 255, .5);
  }
  
  .bs-icon.bs-icon-rounded {
    border-radius: .5rem;
  }
  
  .bs-icon.bs-icon-circle {
    border-radius: 50%;
  }


/* Tailwind CSS replacements */
/* Container */
.max-w-4xl {
  max-width: 60rem; /* 960px */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Title */
.text-4xl, .text-5xl, .text-6xl, .text-7xl {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem; /* 8 x 0.25rem */
  line-height: 1.1;
}

.text-4xl {
  font-size: 2.25rem; /* 36px */
}

@media (min-width: 640px) {
  .text-5xl {
    font-size: 3rem; /* 48px */
  }
}

@media (min-width: 768px) {
  .text-6xl {
    font-size: 3.75rem; /* 60px */
  }
}

@media (min-width: 1024px) {
  .text-7xl {
    font-size: 4.5rem; /* 72px */
  }
}

/* Flex container */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.bg-gray-800 {
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity));
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.p-4 {
  padding: 1rem;
}

.rounded-md {
  border-radius: 0.375rem; /* 6px */
}

/* Code block */
.font-mono {
  font-family: monospace;
}

.text-sm {
  font-size: 0.875rem; /* 14px */
}

@media (min-width: 640px) {
  .text-base {
    font-size: 1rem; /* 16px */
  }
}

@media (min-width: 768px) {
  .text-lg {
    font-size: 1.125rem; /* 18px */
  }
}

.text-gray-300 {
  color: #D1D5DB;
}

.flex-grow {
  flex-grow: 1;
}

.mr-2 {
  margin-right: 0.5rem; /* 8px */
}

.break-all {
  word-break: break-all;
}

/* Button */
.text-gray-300 {
  color: #D1D5DB;
}

.hover\:text-white:hover {
  color: #FFFFFF;
}

.hover\:bg-gray-700:hover {
  background-color: #374151;
}

.size-icon {
  background: none;
  border: none;
}

.aria-label {
  /* Usually used for accessibility; retained for clarity */
}

/* Icon sizes */
.h-4 {
  height: 1rem; /* 16px */
}

.w-4 {
  width: 1rem; /* 16px */
}

@media (min-width: 640px) {
  .sm\:h-5 {
    height: 1.25rem; /* 20px */
  }

  .sm\:w-5 {
    width: 1.25rem; /* 20px */
  }
}

.text-green-500 {
  color: #10B981;
}

/** v2 **/

.background-div {
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 1.5rem; /* 24px */
  background-image: url('/background.svg');
}

@media (min-width: 640px) {
  .background-div {
    padding: 2rem; /* 32px */
  }
}

@media (min-width: 768px) {
  .background-div {
    padding: 3rem; /* 48px */
  }
}

@media (min-width: 1024px) {
  .background-div {
    padding: 4rem; /* 64px */
  }
}

@media (min-width: 1280px) {
  .background-div {
    padding: 6rem; /* 96px */
  }
}

.min-h-screen {
  min-height: 100vh; /* Minimum height of the entire viewport */
}

.w-full {
  width: 100%;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.p-6 {
  padding: 1.5rem; /* 24px */
}

@media (min-width: 640px) {
  .sm\:p-8 {
    padding: 2rem; /* 32px */
  }
}

@media (min-width: 768px) {
  .md\:p-12 {
    padding: 3rem; /* 48px */
  }
}

@media (min-width: 1024px) {
  .lg\:p-16 {
    padding: 4rem; /* 64px */
  }
}

@media (min-width: 1280px) {
  .xl\:p-24 {
    padding: 6rem; /* 96px */
  }
}

.button-variant-ghost {
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #D1D5DB; /* Equivalent to text-gray-300 */
  transition: color 0.2s ease, background-color 0.2s ease;
}

.button-size-icon {
  width: 40px; /* Example, depending on your icon size requirements */
  height: 40px; /* Example, adjust as needed */
}

.button-variant-ghost:hover {
  color: #FFFFFF; /* Equivalent to hover:text-white */
  background-color: #374151; /* Equivalent to hover:bg-gray-700 */
}

.overflow-hidden {
  overflow: hidden;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.grey {
  color: #D1D5DB!important; /* Equivalent to text-gray-300 */
}

.leading-tight {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.boxy {
  margin-top: -1vw;
}