body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    max-width: 900px;
    background-color: white;
    border: 1px solid #ddd;
}

.left-section {
    background-color: #f5f5f5;
    padding: 40px;
    height: 100%;
}

.left-section h1 {
    font-size: 2.5rem;
    color: #003087;
    margin: 0 0 20px 0;
}

.left-section p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.right-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.form-control {
    border-radius: 25px;
    padding: 10px 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

.form-check {
    margin-bottom: 20px;
}

.form-check-label {
    font-size: 0.9rem;
    color: #555;
}

.btn-primary {
    background-color: #0056b3;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 1rem;
    width: 100%;
    text-transform: lowercase;
}

.btn-primary:hover {
    background-color: #003087;
}

.alert {
    margin-bottom: 20px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
    }

    .left-section, .right-section {
        padding: 20px;
    }

    .left-section h1 {
        font-size: 2rem;
    }

    .right-section h2 {
        font-size: 1.2rem;
    }
}