*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
     height: 100vh;  
}

.wrapper {
    width: 80%;
    height: 700px;
}

.logo{
    width: 300px;
    height: auto;
}

.judul-surat{
   text-align: center;
}

.form-container{
    border: 2px solid black;
    width: 100%;
    height: 600px;
    display: flex;
  flex-direction: column;     
  align-items: center;        
  justify-content: flex-start;
}

.form-header{
    border: 2px solid black;
    width: 90%;
    height: 150px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    }

.header{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.header .form1 {
    display: flex;
    align-items: center;
}

.header .form2 {
    display: flex;
    align-items: center;
}

.header .form3 {
    display: flex;
    align-items: center;
}

.barcode{
    width: 300px;
}

.form-body {
    width:90%;
    height: 100vh;
    margin-top: 10px;
}

.form-body .form1 {
    display: flex;
    margin-bottom: 5px;
}

.form-body .form2 {
    display: flex;
}

.form1, .form2 {
  display: flex;
  align-items: center;
}

.form1 h4,
.form2 h4,
.form3 h4 {
  width: 200px;
  margin: 0;
}

.form1 p,
.form2 p {
  margin: 0;
}

.pemeriksaan{
    margin-top: 20px;
}

.isi {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.form-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.label {
  width: 200px;
  font-weight: bold;
}

.separator {
  width: 10px;
}

.value {
  flex: 1;
}

input[type="text"],
input[type="date"],
select {
  width: 50%;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit{
    width: 300px;
    height: 30px;
    border: none;
    background-color: #02c563;
    color: white;
    border-radius: 5px;
    transition: .4s ease-in;
}

.btn-submit:hover {
    background-color: #02944b;
    cursor: pointer;
}
