.page-login .card {
  top: 120px;
  right: 120px;
  width: calc(50vw - 240px);
  max-width: 540px;
  height: calc(100vh - 240px);
  position: absolute;
  z-index: 2;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.1px);
  -webkit-backdrop-filter: blur(7px);
  border: 3px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.page-login .card .card-body {
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-login .card .card-body .logo {
  margin-bottom: auto;
  padding-bottom: 30px;
}
.page-login .card .card-body .logo svg {
  width: auto;
  height: 30px;
}
.page-login .card .card-body .content-wrapper {
  width: 100%;
}
.page-login .card .card-body form {
  width: 100%;
}
.page-login .card .card-body form .form-groups .form-group .custom-label {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}
.page-login .card .card-body form .form-groups .form-group:not(:last-child) {
  margin-bottom: 24px;
}
.page-login .card .card-body form .form-control {
  height: 70px;
  background: none;
  border-radius: 70px;
  border-width: 2px;
  color: #fff;
  font-size: 18px;
  padding-right: 50px;
}
.page-login .card .card-body form .form-control::placeholder {
  color: #fff;
  opacity: 0.3;
}
/* Estilo mostrar senha (olho) */
.page-login .card .card-body form .form-control{
  position: relative;
}

.page-login .card .card-body form .eye{
  position: absolute;
  top: 25px;
  right: 20px;
  margin: auto;
}

.page-login .card .card-body form .eye .active{
  display: block;
}

.page-login .card .card-body form .eye span { 
  display: none;
  cursor: pointer;
}

.page-login .card .card-body form .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.page-login .card .card-body form .form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin: 0 7px 0 0;
  border-radius: 3px;
  border: 2px solid #fff;
}
.page-login .card .card-body form .form-check .form-check-input:not(:checked) {
  background: none;
}
.page-login .card .card-body form .form-check .form-check-input:checked {
  background-color: transparent;
}
.page-login .card .card-body form .form-check .form-check-label {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.page-login .card .card-body form .input-wrapper {
  position: relative;
}
.page-login .card .card-body form .input-wrapper .icon {
  position: absolute;
  top: 0;
  left: 5px;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-login .card .card-body form .input-wrapper .form-control {
  padding-left: 75px;
}
.page-login .card .card-body form .btn {
  width: 100%;
  margin-top: 24px;
}
.page-login .card .card-body form .forget-password {
  font-size: 18px;
  color: #fff;
  margin-top: 24px;
}
.page-login .card .card-body form .forget-password a {
  text-decoration: none !important;
  color: #fff;
  font-weight: 600;
}
.page-login .card .card-body .copyright {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-top: auto;
  opacity: 0.5;
  text-align: center;
}