/* Background halaman */
.login-body {
  background: linear-gradient(135deg, #002b36, #001f29);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kotak Form */
.login-card {
  background-color: #ffffffcf;
  border: 1px solid #ff6000;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400%;
}

/* Logo di dalam form */
.login-logo {
  max-width: 150px;
}

/* Input */
.login-input {
  background-color: #f5f5f5;
  border-radius: 50px;
  padding-left: 2.5rem;
}

/* Icon */
.form-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #FF6000;
}

/* Tombol login */
.btn-orange-custom {
  background-color: #FF6000;
  color: white;
  border-radius: 50px;
  font-weight: bold;
}

.btn-orange-custom:hover {
  background-color: #cc4f00;
}

/* Warna teks custom */
.text-orange-custom {
  color: #FF6000;
}
