body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    min-height: 100vh;
    padding: 10px;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 400px; 
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: transparent;
}

.form-container {
    flex: 1;
    max-width: 400px;
    padding: 20px;
    background-color: #0F0F0F;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

label {
    font-size: 15px;
    margin-bottom: 5px;
    display: block;
    color: white;
}

input {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

button {
    padding: 10px 15px;
    background-color: #FF8000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: auto;
    font-size: 16px;
    transition: background-color 0.3s;
    justify-content: center;
}

button:hover {
    background-color: #45a049;
}

p {
    text-align: center;
    color: white;
}

a {
    color: #FF8000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsif */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 10px; 
    }

    .image-container {
        max-width: 300px; 
        margin-bottom: 20px;
    }

    .form-container {
        width: 100%;
    }
}