.login-page,
.register-page {
background: url(../../assets/img/menu.png) !important;
}

.form-control,
.login-card-body .input-group .input-group-text,
.register-card-body .input-group .input-group-text {
background-color: transparent !important;
}

.form-control,
.input-group-text {
border-bottom: 1px solid #ced4da;
border-top: none;
border-right: none;
border-left: none;
border-radius: 0;
}

.login-card-body .input-group .input-group-text,
.register-card-body .input-group .input-group-text {
border-bottom-right-radius: 0;
color: #fff;
}

.form-control:focus {
  border-color: #ddd2d2;
}

.login-card-body .input-group .form-control, .register-card-body .input-group .form-control,
.login-box-msg, .register-box-msg {
color: #ddd2d2;
}

/* CSS */
.btn-login {
  all: unset;
  width: 100%;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn-login::after,
.btn-login::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.btn-login::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
}

.btn-login::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.btn-login:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.btn-login:hover::after {
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.btn-login:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.btn-login:hover{
  color: #ef9f9f;
}