.elementor-410 .elementor-element.elementor-element-b1aef16{--display:flex;--background-transition:0.3s;}.elementor-410 .elementor-element.elementor-element-bba2cc2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-9e364d2 */.form-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
        .form-container input,
        .form-container select {
            font-size: 40px;
            color: gray;
            background: none;
            border: none;
            border-bottom: 1px solid gray;
            margin: 0 5px;
            max-width: 50%;
            flex: 1;
        }
        .form-container input[type="checkbox"] {
            width: auto;
            margin: 0 5px;
        }
        .form-container input:focus,
        .form-container select:focus {
            outline: none;
        }
        .form-container .submit-btn {
            font-size: 40px;
            color: white;
            background-color: purple;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            margin-top: 20px;
        }
        .form-container .submit-btn:hover {
            background-color: white;
            color: black;
        }
        
        p {
            font-size: 40px;
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9384f19 */<style>
.custom-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form input[type="date"],
.custom-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.custom-form textarea {
    height: 80px;
}

.custom-form .terms {
    display: flex;
    align-items: center;
}

.custom-form .terms input {
    margin-right: 10px;
}

.custom-form button {
    background: #800080;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.custom-form button:hover {
    background: #a000a0;
}
</style>/* End custom CSS */