#customForm {
    max-width: 100%;
    margin: 0 auto;
}

#customForm .form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#customForm .form-group {
    margin-bottom: 15px;
    flex: 1;
}

#customForm .form-group label {
    display: block;
    margin-bottom: 5px;
}

#customForm .form-group input,
#customForm .form-group select,
#customForm .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#customForm button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin-top: 10px;
}

#customForm button:hover {
    background-color: #555;
}
