.signup-container {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
    max-width: 90%;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.left-section {
    background-color: #28a745;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.form-container {
    max-width: 400px;
    width: 100%;
}
.form-check-label a {
    color: #28a745;
    text-decoration: none;
}
.form-check-label a:hover {
    text-decoration: underline;
}
.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
}
.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
@media (max-width: 768px) {
    .signup-container {
        flex-direction: column;
        max-width: 100%;
    }
    .left-section {
        border-radius: 10px 10px 0 0;
    }
    .right-section {
        border-radius: 0 0 10px 10px;
    }
}