body {
    margin: 0;
}

.container1 {
    display: flex;
}

.left-pane {
    width: 50%;
    background-color: #f0f0f0;
    height: 50vh;
    /* Make it full viewport height */
}

.right-pane {
    width: 50%;
    background-color: #e0e0e0;
    height: 100vh;
    /* Make it full viewport height */
}

body {
    font-family: 'Roboto', sans-serif;
}

h1 {
    text-align: center;
    font-size: 2rem;
    margin-top: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #0069d9;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0052a5;
}