html, body {
  font-family: Georgia, 'Times New Roman', Times, serif  !important;
}
#content{
  padding-top: 3rem !important;
}

a {
  color: #007BFF; 
  text-decoration: none !important;
  position: relative;
}
.navbar-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: #0b68cb;
  transition: width 0.3s;
  left: 0;
  bottom: -2px;
}

a:hover::after {
  width: 100%; 
}


input:hover{
  background-color: #eeeeee;
}

input:user-valid {
  border: 2px solid green;
}

input:user-valid + span::before {
  content: "✓";
  color: green;
}

input:user-invalid {
  border: 2px solid red;
}

input:user-invalid + span::before {
  content: "✖";
  color: red;
}
#section_signin{
  background-color: #eee;
}




.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.title::before,.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: royalblue;
}

.title::before {
  width: 18px;
  height: 18px;
  background-color: royalblue;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}


@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(2);
    opacity: 0;
  }
}

.cardDashboard {
  width: 190px;
  height: 254px;
  background: #07182E;
  position: relative;
  display: flex;
  place-content: center;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
}

.cardDashboard h2 {
  z-index: 1;
  color: white;
  font-size: 2em;
}

.cardDashboard::before {
  content: '';
  position: absolute;
  width: 100px;
  background-image: linear-gradient(180deg, rgb(43, 238, 76), rgb(255, 48, 255));
  height: 130%;
  animation: rotBGimg 3s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cardDashboard::after {
  content: '';
  position: absolute;
  background: #07182E;
  ;
  inset: 5px;
  border-radius: 15px;
}  
