/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


:root {
  --font-sans: Poppins, sans-serif;
  --font-serif: Georgia, 'Times New Roman', Times, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  color: var(--color-gray-800);
  background: var(--color-gray-50);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a, button, label, input[type="submit"] {
  font-family: Poppins, sans-serif;
}

.glass {
  background: rgba(18, 65, 56, 0.77);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.7px);
  -webkit-backdrop-filter: blur(4.7px);
  border: 2px solid rgba(255, 255, 255, 0.29);
}

body[data-open="true"] #sidepanel-backdrop {
  opacity: 0.8;
}

.company-name-checker {
  height: 42px;
  width: 42px;
  flex-shrink: 0;
}

.company-name-checker[data-status=success] {
  position: relative;
  background-image: url("/assets/checkmark-d4190926.svg");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 99% center;
}

.company-name-checker[data-status=failed] {
  position: relative;
  background-image: url("/assets/x-ea52ccc6.svg");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 99% center;
}

.company-name-checker[data-status=pending] {
  position: relative;
  background-image: url("/assets/pending-d823a12e.svg");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 99% center;
}


div[data-status=success] .next-button {
  background-color: var(--color-green-700);
  color: var(--color-green-50);
  cursor: pointer;
  opacity: 1;
  pointer-events: all;
}

.next-button {
  background-color: var(--color-gray-300);
  color: var(--color-gray-700);
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}