body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    flex-direction: row;
}

.black-section,
.white-section {
    padding: 35px;
    box-sizing: border-box;
}

.black-section {
    align-content: center;
    background-color: black;
    color: white;
    width: 40%;
}

.black-section .heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 26px;
}

.white-section {
    background-color: white;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading {
    font-size: 24px;
    margin-bottom: 10px;
}

.paragraph {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 20px;
}

.button {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: 14px;
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
    margin-top: 10px;
}

.button:hover {
    background-color: white;
    color: black;
    border-color: black;
}

.centered-heading {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.intro-paragraph {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.form-container {
    text-align: center;
}

.form-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-container input {
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    width: 99%;
    max-width: 400px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .black-section,
    .white-section {
        width: 100%;
    }

    .centered-heading {
        font-size: 24px;
    }
}

.form-button {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 560;
    font-size: 18px;
    background-color: black;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s;
    margin-top: 10px;
}

.form-button:hover {
    background-color: white;
    color: black;
    border-color: black;
}