@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
}

body {
  background: linear-gradient(135deg, #d8f3dc, #ffe5b4);
  min-height: 100vh;
  padding: 40px;
}

/* CONTAINER */

.container {
  width: 95%;
  margin: auto;
}

/* CARD */

.card {
  background: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* JUDUL */

.judul {
  text-align: center;
  margin-bottom: 25px;
  color: #2d6a4f;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
}

/* BUTTON */

.button-group {
  margin-bottom: 25px;
}

.btn {
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-tambah {
  background: #52b788;
}

.btn-edit {
  background: #f4a261;
}

.btn-hapus {
  background: #e76f51;
}

.btn-login {
  background: #40916c;
  width: 100%;
  border: none;
  cursor: pointer;
}

/* TABLE */

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 20px;
}

.table th {
  background: #74c69d;
  color: white;
  padding: 16px;
  font-size: 15px;
}

.table td {
  padding: 16px;
  background: white;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  color: #444;
}

.table tr:hover {
  background: #fafafa;
}

/* FORM */

input,
textarea {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  margin-bottom: 22px;
  border-radius: 14px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

input:focus,
textarea:focus {
  border: 1px solid #74c69d;
}

/* LOGIN */

.login-box {
  width: 420px;
  background: white;
  padding: 40px;
  border-radius: 28px;
  margin: 70px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.logo {
  width: 95px;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

.login-title {
  text-align: center;
  color: #2d6a4f;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
}

.subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 25px;
  font-size: 13px;
}
