body {
    position: relative; /* Essential for positioning the pseudo-element */
}

body::before {
    content: ""; /* Required for pseudo-elements */
    position: fixed; /* Makes the background image static relative to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("http://quantumlayers.com/wp-content/uploads/2025/11/1000013672.png"); /* Specify the image path */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents image repetition */
    opacity: 0.5; /* Sets the opacity of the background image */
    z-index: -1; /* Places the pseudo-element behind other content */
}

/* Buttons */
.ql-btn {
    line-height: 0;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
	padding: 20px 30px;
}

.ql-btn-primary {
    background: linear-gradient(135deg, #5873D0 0%, #7893F0 100%);
    color: #fff;
}

.ql-btn-primary:hover {
    background: linear-gradient(135deg, #4863C0 0%, #6883E0 100%);
    color: #fff;
}

.ql-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ql-btn-secondary {
    background: #f0f0f1;
    color: #1d2327;
}

.ql-btn-secondary:hover {
    background: #e0e0e0;
}


.ql-btn-danger {
    background: #dc3545;
    color: white;
}

.ql-btn-danger:hover {
    background: #c82333;
}

.ql-form-group {
    margin-bottom: 25px;
}

.ql-form-group {
    margin-bottom: 25px;
    color: #333;
}

.ql-form-group select, 
.ql-form-group input[type="number"] {
    color: #333;
}

.ql-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d2327;
}

.ql-form-group input[type="text"],
.ql-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s;
    box-sizing: border-box;
}

.ql-form-group input:focus,
.ql-form-group textarea:focus {
    outline: none;
    color: #333;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ql-form-group small {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 13px;
}

.ql-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ql-radio {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
}

.ql-radio:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.ql-radio input[type="radio"] {
    margin-right: 12px;
    
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.ql-radio input[type="radio"]:checked ~ span {
    color: #667eea;
    font-weight: 600;
}

.ql-radio span {
    flex: 1;
}

