* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(120deg, #0c2856, #1a0b2e);
}

.no-gutters {
  align-items: center;
  height: 80%;
  width: 80%;
  border-radius: 20px;
  background-color: #0c2856;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.left-section {
  width: 100%;
  height: 95%;
}

.overlay {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image 1s ease-in-out; /* Adiciona uma transição suave */
}

.text-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  position: relative;
  bottom: 15%;
}

.left-section-subtitle {
  margin-bottom: 0px !important;
  z-index: 9;
  font-family: Roboto;
  visibility: visible;
  text-align: center;
  line-height: 25px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 16px;
  border-color: rgb(0, 0, 0);
  border-style: none;
  margin: 0px;
  border-radius: 0px;
  padding: 0px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  white-space: nowrap;
  width: auto;
  height: auto;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}

.left-section-title {
  color: rgba(255, 255, 255, 0.67);
  opacity: 0.7;
  transform: matrix(1, 0, 0, 1, 0, 0);
  transform-origin: 50% 50% 0px;
  font-size: 5rem;
  font-weight: 700;
  position: relative;
  bottom: 25px;
  font-family: Roboto;
  transition: left-section-title 1s ease-in-out;
}

.left-section-title,
.left-section-subtitle {
  opacity: 0;
  animation: fadein 5s forwards;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.Logo {
  margin-bottom: 20px;
}

#loginForm {
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.input-group {
  height: 55px;
}

.btn-block {
  width: 100%;
}

.fa-solid {
  z-index: 10;
  padding: 16px 12px 12px 12px;
  color: #1e3050;
  text-align: center;
  font-size: 20px;
  background: #e8f0fe;
  cursor: pointer;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.divButtom {
  width: 100%;
}

.close:hover {
  background-color: aliceblue;
}
