
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*----------------------*/

/* FORM CONTAINER */
.form-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  background: #f1f1f1;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 12px;
  text-align: center;
}

.form-container .logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.form-container h2 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #c20000;
}

.form-container h3 {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* FORM GROUP */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

.radio-wrap {
  display: flex;
  gap: 20px; /* Jarak antara pilihan */
  margin-top: 8px;
  flex-wrap: wrap;
}

.radio-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #333;
}


.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="phone"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group a {
  color: #c20000;
  text-decoration: underline;
}

.checkbox-group {
  margin-top: 10px;
}

.checkbox-group label {
  font-weight: normal;
}

.file-description {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}

.file-description strong {
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.file-description ul {
  padding-left: 20px;
  margin: 0;
}

.file-description ul li {
  margin-bottom: 6px;
  line-height: 1.4;
}


/* SUBMIT BUTTON */
.submit-btn {
  display: block;
  margin: 30px auto 0 auto;
  padding: 12px 30px;
  background-color: #c20000;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.submit-btn:hover {
  background-color: #a60000;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(194, 0, 0, 0.3);
}

/* Back Button Styling */
.back-btn {
  display: block;
  margin: 20px auto 0 auto;
  background: none;
  color: #c20000;
  font-weight: bold;
  border: 2px solid #c20000;
  padding: 10px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.back-btn:hover {
  background: #c20000;
  color: #fff;
}


/* PRIVACY POLICY */
.privacy-policy {
  margin: 20px 0 10px;
  text-align: left;
}

.privacy-policy label {
  font-weight: normal;
  color: #555;
}

.privacy-text {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
  text-align: left;
}

.privacy-text a {
  color: #c20000;
  text-decoration: underline;
}

/* OTHER CONTAINER SIZE INPUT */
#otherContainerInput input {
  margin-top: 10px;
  padding: 8px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }
}



/*----------------------*/
.footer {
  background-color: white;
  padding: 40px 20px 20px;
  border-top: 2px solid #c20000; /* line merah */
}

.footer-top {
  text-align: center;
  margin-bottom: 30px;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}
.footer-description {
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto 20px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 18px;
}
.social-icons a {
  color: #c20000;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.footer-column h3 {
  color: #c20000;
  margin-bottom: 10px;
}
.footer-column a {
  display: inline-block;
  margin: 4px 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a {
  display: block;
  margin: 6px 0;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #c20000;
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: #c20000;
  transform: translateX(4px);
}

.footer-column a:hover::after {
  width: 100%;
}


.footer-rights {
  text-align: center;
  font-size: 13px;
  margin-top: 40px;
  color: #777;
}



