/* grid 2 kolom */
.pc-club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* card utama */
.pc-club-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* inner card */
.pc-club-inner {
  display: flex;
  align-items: center;
  gap: 16px;

  background: #f5f5f5;
  border-radius: 999px; /* pill shape */
  padding: 14px 20px;

  transition: all 0.2s ease;
}

/* hover effect */
.pc-club-inner:hover {
  background: #eaeaea;
  transform: translateY(-2px);
}

/* logo */
.pc-club-inner img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  padding: 5px;
}

/* nama klub */
.pc-club-inner h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

/* responsive */
@media (max-width: 768px) {
  .pc-club-grid {
    grid-template-columns: 1fr;
  }
}

/* container */
.pc-form-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* title */
.pc-form-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

/* form layout */
.pc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* input & textarea */
.pc-form input,
.pc-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.2s ease;
}

/* textarea resize */
.pc-form textarea {
  min-height: 100px;
  resize: vertical;
}

/* focus */
.pc-form input:focus,
.pc-form textarea:focus {
  border-color: #4caf50;
  outline: none;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.15);
}

/* file input */
.pc-form input[type="file"] {
  padding: 6px;
}

/* button */
.pc-btn {
  margin-top: 10px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #4caf50;
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover */
.pc-btn:hover {
  background: #43a047;
  transform: translateY(-1px);
}

.pc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pc-field label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

/* responsive */
@media (max-width: 768px) {
  .pc-form-container {
    margin: 20px;
    padding: 20px;
  }
}
