/* Style for the form container */
#custom-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

/* Style for the form labels */
#custom-form label {
    font-size: 14px;
    color: #333;
    display: inline-block;
    margin-bottom: 6px;
}

/* Style for the text input */
#custom-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Arrange radio buttons in one line */
#custom-form .radio-group {
    display: flex;
    align-items: center;
}

#custom-form .radio-group input[type="radio"] {
    margin-right: 5px;
}

#custom-form .radio-group label {
    margin-right: 20px;
    font-size: 16px;
}

/* Style for the submit button */
#custom-form input[type="submit"] {
    background-color: #4285f4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

#custom-form input[type="submit"]:hover {
    background-color: #357ae8;
}

/* Style for the response display */
#form-response {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}

/* Responsive design */
@media (max-width: 480px) {
    #custom-form {
        padding: 15px;
    }
    #custom-form .radio-group {
        flex-direction: column;
        align-items: flex-start;
    }
    #custom-form .radio-group label {
        margin-bottom: 10px;
    }
    #custom-form input[type="submit"] {
        padding: 12px;
        font-size: 18px;
    }
}
