body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.form-container {
    background: #fff;
    width: 50%;
    margin: 2rem auto;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h1, .form-container h3 {
    color: #333;
    text-align: left;
    margin-bottom: 1rem; /* Adjusted margin for spacing */
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.form-container textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none; /* Remove the default focus outline */
}

.form-container textarea {
    height: 150px;
    resize: vertical;
}

.radio-group {
    display: flex;
    align-items: center; /* Align items in the middle */
    margin-bottom: 0.5rem; /* Adjusted space between radio groups */
}

.radio-group input[type="radio"] {
    margin-right: 0.5rem; /* Space between the radio button and the label */
}

.radio-group label {
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.form-container button {
    background-color:rgba(0, 136, 169, 1);;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block; /* Make the button a block element to fill the container width */
    width: auto; /* Allow the button to size to its content */
    margin-top: 1rem; /* Space above the button */
    margin-left: auto; /* Align the button to the right */
    margin-right: 0; /* Align the button to the right */
}

.form-container button:hover {
    background-color: rgba(0, 136, 169, 0.8);
}

@media (max-width: 768px){
    .form-container {
        background: #fff;
        width: 100%;
        margin: 2rem auto;
        padding: 2rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
}