* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    max-width: 1000px;
    width: 90%;
    background: #fff;
    padding: 40px;
    gap: 50px;
}

/* Bagian Ilustrasi */
.illustration-section {
    flex: 1;
    display: flex;
    align-items: center;
}

.illustration-section img {
    width: 100%;
}

/* Bagian Form */
.form-section {
    flex: 1;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
}

.avatar {
    width: 80px;
    height: 80px;
    background-color: #2f3e46; /* Warna gelap sesuai gambar */
    border-radius: 50%;
    margin: 0 auto 15px;
}

h2 { font-weight: 600; color: #333; }
p { color: #777; font-size: 0.9rem; }

h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

/* Gaya Input */
.input-group {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.input-group label {
    display: block;
    font-size: 0.8rem;
    color: #333;
}

.input-group input, .input-group textarea {
    width: 100%;
    border: none;
    padding: 10px 0;
    outline: none;
    font-size: 0.95rem;
}

/* Tombol Submit */
.submit-btn {
    width: 100%;
    background-color: #2f3e46;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #354f52;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .illustration-section { display: none; }
}

.modal-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.411);
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 1s;
}

.show {
    visibility: visible;
    opacity: 1;
}

.modal {
    width: 600px;
    height: 400px;
    position: relative;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 60%;
    max-height: 40%;
}

.modal h3 {
    margin: 0;
    padding: 0;
    font-size: 4vw;
}

.modal p {
    margin: 20px 0;
    padding: 0;
    font-size: 2vw;
}

.modal img {
    display: block;
    margin: 0 auto 0 auto;
    padding: 0;
    width: 300px;
    max-width: 60%;
}

