

.center-screen {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;

}

.content-section {
  background: rgb(47, 46, 46, 0.5);
  padding: 20px 40px;
  border: 1px solid rgb(89, 89, 89);
  border-radius: 30px;
}

.form-group {
  color: white;
}
.form-control, .form-control:focus {
  background: transparent;
  border: 2px solid white;
  border-radius: 13px;
  color: white;
}

.link-to {
  color: red;
}
.link-to:hover {
  color: white;
}


.text-mute {
  color: white;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


@-webkit-keyframes autofill {
  to {
    color: white;
    background: transparent;
  }
}
input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

