/* Start custom CSS for html, class: .elementor-element-8fb04d0 *//* Kylas Form Container */
#kl__form-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

/* Labels */
#kl__form-container label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 8px;
}

/* Input Fields */
#kl__form-container input,
#kl__form-container select,
#kl__form-container textarea {
    width: 100%;
    height: 48px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    padding: 0 15px;
    font-size: 16px;
    color: #444;
    background: #fff;
    margin-bottom: 20px;
    box-sizing: border-box;
    outline: none;
    transition: 0.3s ease;
}

/* Focus Effect */
#kl__form-container input:focus,
#kl__form-container select:focus,
#kl__form-container textarea:focus {
    border-color: #0d4ea6;
    box-shadow: 0 0 5px rgba(13, 78, 166, 0.2);
}

/* Placeholder */
#kl__form-container input::placeholder,
#kl__form-container textarea::placeholder {
    color: #777;
}

/* Submit Button */
#kl__form-container button,
#kl__form-container input[type="submit"] {
    width: 100%;
    height: 50px;
    background: #0d4ea6;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button Hover */
#kl__form-container button:hover,
#kl__form-container input[type="submit"]:hover {
    background: #083b80;
}/* End custom CSS */