/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    display: flex;
    background-color: #fff;
    width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Left Section */
.left-section {
    width: 40%;
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.left-section .logo {
    width: 60px;
    margin-bottom: 1rem;
}

.left-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.left-section p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.left-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

/* Right Section */
.right-section {
    width: 60%;
    padding: 2rem;
}

.right-section h2 {
    font-size: 1.5rem;
    color: #333;
}

.subtext {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.subtext a {
    color: #007bff;
    text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.checkboxes {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.checkboxes label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.checkboxes input {
    margin-right: 8px;
}

button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.required-text {
    font-size: 0.8rem;
    color: #666;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

footer a {
    color: #007bff;
}
