/* body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.form-section {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.form-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-section form input,
.form-section form textarea,
.form-section form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-section form button {
    background-color: #b30000;
    color: white;
    border: none;
    cursor: pointer;
}

.form-section form button:hover {
    background-color: #b30000;
}

.image-section {
    flex: 1;
    min-width: 300px;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

footer, nav {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .form-section,
    .image-section {
        min-width: 100%;
        margin-right: 0;
    }

    .form-section h1 {
        font-size: 20px;
    }

    .form-section form input,
    .form-section form textarea,
    .form-section form button {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .form-section h1 {
        font-size: 18px;
    }

    .form-section form input,
    .form-section form textarea,
    .form-section form button {
        padding: 6px;
    }
}

 */

 .content-wrapper {
     margin: 0 auto;
     padding: 20px;
     max-width: 1200px;
 }

 .container {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     padding: 20px;
 }

 .form-section {
     flex: 1;
     min-width: 300px;
     margin-right: 20px;
 }

 .form-section h1 {
     font-size: 24px;
     margin-bottom: 20px;
 }

 .form-section form input,
 .form-section form textarea,
 .form-section form button {
     width: 100%;
     padding: 10px;
     margin: 10px 0;
     border: 1px solid #ccc;
     border-radius: 5px;
 }

 .form-section form button {
     background-color: #b30000;
     color: white;
     border: none;
     cursor: pointer;
 }

 .form-section form button:hover {
     background-color: #990000;
 }

 .image-section {
     flex: 1;
     min-width: 300px;
 }

 .image-section img {
     width: 100%;
     height: auto;
     border-radius: 10px;
 }

 /* Media Queries untuk Responsivitas */
 @media (max-width: 768px) {
     .container {
         flex-direction: column;
         align-items: center;
     }

     .form-section,
     .image-section {
         min-width: 100%;
         margin-right: 0;
     }

     .form-section h1 {
         font-size: 20px;
     }

     .form-section form input,
     .form-section form textarea,
     .form-section form button {
         padding: 8px;
     }
 }

 @media (max-width: 480px) {
     .form-section h1 {
         font-size: 18px;
     }

     .form-section form input,
     .form-section form textarea,
     .form-section form button {
         padding: 6px;
     }
 }