/* ==============================
   SIMULASI KREDIT SECTION
============================== */

.wrapper {
  font-family: Arial, sans-serif;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.wrapper h2 {
  text-align: center;
  margin-bottom: 10px;
}

.wrapper p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

/* Container */
.wrapper .container {
  display: flex;
  justify-content: center;
}

/* Form box */
.wrapper .simulasi-form {
  width: 100%;
  max-width: 600px;
  padding: 25px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Label */
.wrapper label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

/* Input, Select, Textarea */
.wrapper input,
.wrapper select,
.wrapper textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1.5px solid #999;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 14px;
  font-family: inherit;
}

/* Fokus */
.wrapper input:focus,
.wrapper select:focus,
.wrapper textarea:focus {
  outline: none;
  border-color: #b8860b;
}

/* Button */
.wrapper button {
  width: 100%;
  margin-top: 25px;
  padding: 12px;
  background-color: #ffd700;
  border: none;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wrapper button:hover {
  background-color: #b8860b;
}

/* Responsive */
@media (max-width: 768px) {
  .wrapper {
    padding: 20px 15px;
  }

  .wrapper .simulasi-form {
    padding: 20px;
  }
}
