/* ============================
   LOGIN PAGE CUSTOM STYLE
============================ */

/* Background full merah gradasi */
.login {
  background: linear-gradient(135deg, #b30000, #ff4d4d) !important;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* Wrapper */
.login .wrapper.wrapper-login {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card login */
.login .container-login {
  width: 400px;
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important;
  border: none !important;
}

/* Judul */
.login .container-login h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222;
}

/* Form Floating Label */
.form-floating-label {
  position: relative;
}

.form-floating-label .placeholder {
  position: absolute;
  padding: 0.375rem 0.75rem;
  transition: 0.2s;
  opacity: 0.8;
  margin-bottom: 0 !important;
  font-size: 14px !important;
  top: 10px;
  left: 35px;
  cursor: text;
}

/* Input ketika aktif */
.form-floating-label .form-control:focus + .placeholder,
.form-floating-label .form-control:valid + .placeholder,
.form-floating-label .form-control.filled + .placeholder {
  font-size: 12px !important;
  transform: translate3d(0, -10px, 0);
  top: 0;
  opacity: 1;
  padding: 0.375rem 0 0.75rem;
  font-weight: 600;
  color: #b30000 !important;
}

/* Input style */
.input-border-bottom {
  border-width: 0 0 1px 0 !important;
  border-color: #ccc !important;
  padding-top: 0.4rem;
  padding-bottom: 0.75rem;
  padding-right: 2.5rem;
  padding-left: 1.55rem;
  background: none !important;
}

/* Icon user/password */
.login .user-icon {
  position: absolute;
  left: 10px;
  line-height: 2.2;
  font-size: 16px;
  color: #999;
}

.login .show-password {
  position: absolute;
  right: 20px;
  line-height: 1.7;
  font-size: 22px;
  cursor: pointer;
  color: #999;
}

/* ============================
   TOMBOL LOGIN MERAH
============================ */
.btn-login {
  background: #cc0000 !important; /* merah */
  color: #fff !important;
  font-weight: 600;
  padding: 14px 0 !important;
  border-radius: 30px !important;
  transition: 0.2s;
  border: none !important;
}

.btn-login:hover {
  background: #a80000 !important; /* lebih gelap */
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
}

/* Footer */
.login .login-footer .msg {
  color: #444 !important;
  font-size: 13px;
}

/* Responsive */
@media screen and (max-width: 399px) {
  .container-login {
    width: 100% !important;
    padding: 60px 15px !important;
  }
}
