/*
Created at: 09/05/2022
Created by Furkan Özhalep
*/
#error-element{
  position: relative;
  top: -10px;
  color: red;
  text-shadow: 0 0 10px rgba(255,255,255,.5);
}

.nav-tabs{
  border: 0;
  padding: 0 30px;
  margin-bottom: 30px;
}

.password-score-container{
  position: relative;
  width: 90%;
  transform: translateX(-50%);
  left: 50%;
  height: 5px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255,255,255,.3);
  margin-top: -30px;
}
.password-score-container #password-score{
  content: "";
  position: absolute;
  left: 0;
  width: var(--password-score-width);
  background-color: var(--password-score-color);
}

.auth-card p{
  color: white;
  font-size: 20px;
}
.auth-card a{
  text-decoration: underline;
  color: white;
}
.auth-card .form-control{
  background: white;
  outline: 0;
  border: 0;
  border-radius: var(--std-radius) !important;
  width: 100%;
  margin-bottom: 25px;
  padding: 15px 20px;
  font-size: 20px;
}
.form-check .form-check-label{
  color: white;
  font-size: 17px;
  margin-bottom: 10px;
}
.form-check .form-check-label a{
  color: white;
  text-decoration: underline;
}

.auth-card input::placeholder{
  color: rgb(215, 215, 215);
}
.logo-section{
  display: flex;
  justify-content: center;
}
.auth-card{
  width: 100%;
  max-width: 580px;
  overflow: hidden;
  border-top: 0;
  padding: 25px 45px;
}
.auth-card .nav-link{
  display: block;
  outline: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.60);
  border-bottom: 2px solid rgba(255,255,255,.3);
  border-radius:var(--std-radius);
  width: 155px;
  font-size: 28px;
  font-weight: 600;
  background: linear-gradient(to bottom,
  rgba(255,255,255,.8),
  rgba(255,255,255,.6),
  rgba(255,255,255,.9)
  );
  color: #000;
  box-shadow: 0 5px 10px rgba(0,0,0,.5);
}
.auth-card .nav-link.active,.auth-card .nav-link:focus{
  background-image: linear-gradient(to bottom,var(--kurumsal_acik),var(--kurumsal_koyu));
  color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}