body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.form-section {
    padding: 20px;
}
.form-section h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}
.form-section p {
    font-size: 0.9em;
    margin-bottom: 20px;
    text-align: center;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
input {
    padding: 10px;
    border: none;
    background-color: #fff;
    color: #000;
    width: 100%;
    box-sizing: border-box;
}
button {
    padding: 10px 20px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}
.image-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.image-section img {
    height: auto;
    width: 800px;
}

a {
    color: #fff;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .form-section h1 {
        font-size: 1.2em;
    }
    .form-section p {
        font-size: 0.8em;
    }
    .image-section img {
        width: 500px;
    }
    .form-group, button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-section h1 {
        font-size: 1em;
    }
    .form-section p {
        font-size: 0.7em;
    }
    .image-section img {
        width: 300px;
    }
    .form-group input {
        font-size: 0.9em;
    }
    button {
        font-size: 0.9em;
    }
}

input.error, textarea.error, select.error {
    border: 2px solid red;
    background-color: #ffffd5;
    margin: 0;
    color: red;
    }

label.error {
    display: none !important;
    }