:root {
  --primary: #05777b;
  --primary-dark: #045c5f;
  --secondary: #3ac5c9;
  --light: #f8f9fa;
  --white: #ffffff;
}

body {
  background-color: var(--light);
}

.content-form {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.452);
}

.titulo-login {
  color: var(--primary-dark) !important;
}

.pt-6 {
  padding-top: 74px;
  padding-bottom: 74px;
}

.form-logoTipo_new {
  width: clamp(120px, 20vw, 220px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.form-group {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-top: 25px;
  width: 100%;
}

.input-padrao {
  padding: 0.5rem 0 0.5rem 0.5rem;
  border-radius: 5px;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background-color: var(--white);
  padding: 0 5px;
  color: #777;
  font-size: 16px;
  pointer-events: none;
  transition: 0.2s ease all;
}

.input-padrao:focus+label,
.input-padrao:not(:placeholder-shown)+label {
  top: -15px;
  left: 8px;
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: bold;
  background-color: transparent;
}


.preloader-login {
  position: fixed;
  inset: 0;
  z-index: 99999;

  background: radial-gradient(circle at 30% 20%, #ffffff 0%, #fbfbfb 45%, #f6f6f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}


.preloader-box {
  text-align: center;
  max-width: 520px;
  width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none !important;
  border: 0;
}


.preloader-logo {
  width: clamp(170px, 22vw, 340px);
  max-width: 80vw;
  height: auto;
  display: block;
  margin: 0 auto 16px auto;

  animation: preloaderPulse 1.2s ease-in-out infinite;
  will-change: transform, opacity;
}


.preloader-text {
  font-weight: 700;
  color: #2b2b2b;
  font-size: clamp(14px, 1.2vw, 20px);
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.preloader-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.preloader-dots span {
  width: clamp(8px, 0.8vw, 12px);
  height: clamp(8px, 0.8vw, 12px);
  border-radius: 50%;
  background: var(--primary);
  opacity: .25;
  animation: dotBlink 1s infinite;
}

.preloader-dots span:nth-child(2) {
  animation-delay: .15s;
}

.preloader-dots span:nth-child(3) {
  animation-delay: .30s;
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .95;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: .25;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}


.preloader-login.is-hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}


#carouselWrap.is-loading {
  visibility: hidden;
}