body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    box-sizing: border-box;
}

.form-wrapper {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.form-container {
    padding: 20px;
    width: 51%; /* Reduced by 15% (from 60% to 51%) */
    background-color: #fff;
    box-sizing: border-box;
}

.form-container h2 {
    color: #333;
    font-size: 1.275rem; /* Reduced by 15% (from 1.5rem to 1.275rem) */
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #444;
    font-size: 0.85rem;
}

input[type="text"],
input[type="date"],
input[type="tel"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.85rem;
}

.submit-button {
    background-color: #007b5e;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.submit-button:hover {
    background-color: #005e46;
}

.right-container {
    background-color: #e0f2e9;
    padding: 20px;
    width: 49%; /* Increased to balance the reduction in the left container */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.right-container h3 {
    font-size: 1.3rem;
    color: #007b5e;
    margin-bottom: 15px;
}

.right-container p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.right-container ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.right-container li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

.register-button {
    background-color: #007b5e;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.register-button:hover {
    background-color: #005e46;
}
