/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 06 2026 | 09:55:34 */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f4f7f6;
color: #333;
line-height: 1.6;
padding: 20px;
}

.ux-form-container {
max-width: 600px;
margin: 0 auto;
background: #ffffff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-title {
margin-bottom: 24px;
font-size: 24px;
color: #1a1a1a;
text-align: center;
}

.form-group {
margin-bottom: 20px;
}

label {
display: block;
font-weight: 600;
margin-bottom: 8px;
font-size: 14px;
color: #2c3e50;
}

.form-description {
font-size: 13px;
color: #666;
margin-bottom: 10px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="number"] {
width: 100%;
padding: 12px;
border: 1px solid #dcdfe6;
border-radius: 6px;
font-size: 15px;
transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="number"]:focus {
outline: none;
border-color: #409eff;
box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.checkbox-group {
display: flex;
flex-direction: column;
gap: 10px;
}

.checkbox-label {
display: flex;
align-items: center;
font-weight: 400;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-right: 10px;
width: 18px;
height: 18px;
accent-color: #409eff;
}

.submit-btn {
width: 100%;
background-color: #409eff;
color: white;
border: none;
padding: 14px;
font-size: 16px;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 10px;
}

.submit-btn:hover {
background-color: #3080d0;
}