/* Container form */
.scan__input {
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 200px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 700px; /* Menjadi lebih responsif */
  max-width: 1200px;
  border-top: 2px solid #E68369; /* Garis dekoratif di atas */
  border-bottom: 2px solid #E68369; /* Garis dekoratif di atas */
  margin-top: 40px;
  margin-left: 200px;
}

/* Judul form */
.titleh1 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #E68369; /* Warna mencolok */
  text-transform: uppercase;
}

/* Label untuk input */
.upload-label-cv {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
  text-align: left;
  color: #444444;
}

.upload-label-cv-des{
  font-size: 12px;
  font-weight: 600;
  margin-bottom: -45px;
  display: block;
  text-align: left;
  color: #444444;
}

/* Input file styling */
.file-input-cv {
  width: 100%;
  padding: 30px;
  border: 2px dashed #E68369; /* Garis putus-putus */
  border-radius: 8px;
  margin-bottom: 1px;
  font-size: 12px;
  background-color: #fef8f5;
  transition: background-color 0.3s;
  
}

.file-input-cv:hover {
  background-color: #fce4d9; /* Warna saat hover */
  border-radius: 2px; /* Bentuk melingkar */
}

/* Tombol submit */
.submit-button {
  background-color: #E68369;
  color: white;
  padding: 8px 50px;
  border: none;
  border-radius: 25px; /* Bentuk melingkar */
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
  margin-top: 10px;
}

.submit-button:hover {
  background-color: #d3725b;
  transform: translateY(-3px); /* Efek naik saat hover */
}

.submit-button:active {
  transform: translateY(0); /* Efek klik */
}

/* Menambahkan animasi */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scan__input {
  animation: fadeIn 1s ease-out;
}
