/* Oasis base + auth shell */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* shared tokens (Blade + #app) */
:root {
  --oasis-base-bg: #064D2B;
  --oasis-font: 'Poppins', sans-serif;
  --oasis-font-small: 'Roboto', sans-serif;
  --oasis-btn: #009580;
  --oasis-btn-secondary: #007F6D;
  --oasis-link: #CC5800;
  --oasis-danger: #C32020;
  --oasis-success-bg: #ecfdf5;
  --oasis-form-title: #292929;
  --oasis-form-desc: #636363;
  --oasis-label: #767676;
  --oasis-input-value: #979797;
  --oasis-input-border: #C9C9C9;
  --oasis-separator: #DCDBDD;
  --oasis-eye-inactive: #C9C9C9;
  --oasis-eye-active: #797676;
  /* Extended palette */
  --oasis-gray-900: #292929;
  --oasis-gray-800: #363636;
  --oasis-gray-600: #636363;
  --oasis-gray-500: #767676;
  --oasis-gray-400: #979797;
  --oasis-gray-300: #C9C9C9;
}

html,
body {
  font-family: var(--oasis-font);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--oasis-font);
}

small,
.small,
caption,
.text-small,
.text-10,
.text-11,
.text-12,
.app-footer__line {
  font-family: var(--oasis-font-small);
}

.loading_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    display: block;
    position: absolute;
  }

  .loader_logo {
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(50% - 50px);
    top: 38%;
  }

  .loader_logo img {
    height: 100%;
    width: 100%;
  }

  .loading {
    border: 3px solid rgba(6, 77, 43, 0.3);
    position: absolute;
    left: calc(50% - 40px);
    top: 50%;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border-top-color: var(--oasis-base-bg);
    animation: loader 1s ease-in-out infinite;
    -webkit-animation: loader 1s ease-in-out infinite;
  }

  @keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

  @-webkit-keyframes loader {
    to {
      -webkit-transform: rotate(360deg);
    }
  }

/* Oasis: flat .btn (auth + this bundle) */
a.btn,
button.btn,
label.btn,
.btn {
  box-shadow: none !important;
}
.btn:hover,
.btn:focus,
.btn.focus,
.btn:active,
.btn.active,
.btn:not(:disabled):not(.disabled):active,
.show > .btn.dropdown-toggle {
  box-shadow: none !important;
}
.btn:focus-visible {
  outline: 2px solid var(--oasis-base-bg, #064d2b);
  outline-offset: 2px;
}