/* BACKGROUND */
body {
  background: linear-gradient(135deg, #0d6efd, #6ea8fe);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO */
.login-logo {
  font-size: 40px;
  color: #0d6efd;
}

/* TEXT */
h4 {
  margin-bottom: 5px;
}

     /* CARD */
.login-card {
  width: 380px;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* INPUT */
.input-group-custom {
  position: relative;
}

.input-custom {
  padding-left: 40px;
  padding-right: 40px;
  height: 45px;
  border-radius: 12px;
}

/* ICON */
.icon-left {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #6c757d;
}

/* TOGGLE */
.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* BUTTON */
.btn-login {
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
  border-radius: 30px;
  transition: 0.3s;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13,110,253,0.4);
}

/* BACK */
.btn-back-inside {
  color: #0d6efd;
  text-decoration: none;
  font-size: 14px;
}

.login-card {
  width: 380px;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease;
}

/* ANIMASI */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}