body {
  background-image: url("../../images/bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.login-card {
  width: 100%;
  max-width: 450px;
  background: #ffffff;
  border-radius: 25px;
  padding: 40px 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.login-card h4 {
  color: #c40000;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}
.form-label {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8px;
}
.form-control {
  height: 50px;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding-left: 15px;
  font-size: 15px;
}

.form-control:focus {
  border-color: #c40000;
  box-shadow: 0 0 6px rgba(196, 0, 0, 0.3);
}
.input-group-text {
  background: #f8f9fa;
  border-radius: 12px 0 0 12px;
  border: 1px solid #ddd;
}
.btn-danger {
  background-color: #c40000;
  border: none;
  border-radius: 30px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-danger:hover {
  background-color: #990000;
  transform: translateY(-2px);
}
.register-text {
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
}

.register-text a {
  color: #c40000;
  font-weight: 700;
  text-decoration: none;
}

.register-text a:hover {
  text-decoration: underline;
}

.menu-utama {
  font-size: 18px;
  font-weight: 700;
  color: #fff !important;
}

.logout-fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #dc3545;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

.logout-fixed:hover {
  background-color: #b02a37;
  color: #fff;
}

.menu-user {
  font-size: 17px;
  font-weight: 600;
  color: #fff !important;
  margin-left: 20px;
}

.menu-user:hover {
  color: #ffd966 !important;
}
body {
            
            font-family: 'Segoe UI', sans-serif;
        }

        .login-card {
            width: 100%;
            max-width: 400px;
            border-radius: 15px;
            border: none;
        }

        .card-body {
            border-radius: 15px;
        }

        h4 {
            color: #b30000;
            letter-spacing: 1px;
        }

        .form-control {
            border-radius: 8px;
            padding-left: 40px;
        }

        .input-group-text {
            background: white;
            border-right: none;
        }

        .form-control:focus {
            box-shadow: 0 0 8px rgba(179, 0, 0, 0.4);
            border-color: #b30000;
        }

        .btn-danger {
            background-color: #b30000;
            border: none;
            border-radius: 8px;
            transition: 0.3s;
        }

        .btn-danger:hover {
            background-color: #8f0000;
        }

        .register-text a {
            color: #b30000;
            font-weight: 500;
            text-decoration: none;
        }

        .register-text a:hover {
            text-decoration: underline;
        }
        .lupa-password {
    color: #b30000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.lupa-password:hover {
    color: #ff0000;
    text-decoration: underline;
}