#fw-section-custom-html-3d0eadb1-f0ea-4dce-9bc5-187753ce537f {

body {
    background-color: #0f0f0f;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    line-height: 1.6;
}

#order-form-container {
     width: 100%;
     background-color: #1f1f1f;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
     padding: 35px 5%;
     box-sizing: border-box;
}

h2 {
    color: #ffffff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
   margin-bottom: 5px;
}

label {
    color: #c5c5c5;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
    font-size: 0.95em;
}

input[type="text"],
input[type="email"],
textarea,
select {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #444;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:-webkit-autofill,
input[type="email"]:-webkit-autofill,
textarea:-webkit-autofill {
   -webkit-box-shadow: 0 0 0 30px #2a2a2a inset !important;
   -webkit-text-fill-color: #e0e0e0 !important;
   caret-color: #e0e0e0;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
   outline: none;
   border-color: #666;
   box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.3);
}

::placeholder {
    color: #888;
    opacity: 1;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23999999%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 12px;
    padding-right: 45px;
    cursor: pointer;
}

select option {
    background-color: #2a2a2a;
    color: #e0e0e0;
}

select option[value=""] { color: #888; }

.file-input-wrapper {
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #2a2a2a;
    padding: 5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.file-input-wrapper:focus-within {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 0 3px rgba(102, 102, 102, 0.3);
}

input[type="file"] {
 color: #bbb;
 background-color: transparent;
 border: none;
 border-radius: 0;
 padding: 10px 12px;
 font-size: 0.95em;
 box-sizing: border-box;
 width: 100%;
 cursor: pointer;
}

input[type="file"]::file-selector-button {
 background-color: #555;
 color: #ffffff;
 border: none;
 padding: 8px 15px;
 border-radius: 5px;
 cursor: pointer;
 margin-right: 15px;
 transition: background-color 0.2s ease;
}

input[type="file"]::file-selector-button:hover {
 background-color: #777;
}

button[type="submit"] {
   background-image: linear-gradient(to bottom, #ffffff, #f0f0f0);
   color: #1f1f1f;
   border: none;
   padding: 15px 25px;
   border-radius: 99px;
   font-size: 1.15em;
   font-weight: bold;
   cursor: pointer;
   transition: background-image 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
   margin-top: 15px;
   width: 100%;
   box-sizing: border-box;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

button[type="submit"]:hover {
   background-image: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

button[type="submit"]:active {
    transform: scale(0.97);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

button[type="submit"]:disabled {
     background-image: linear-gradient(to bottom, #aaaaaa, #999999);
     color: #555;
     cursor: wait;
     box-shadow: none;
     transform: none;
 }

.field-description {
   font-size: 0.85em;
   color: #999;
   margin-top: -15px;
   margin-bottom: 5px;
   padding-left: 5px;
}

#form-status {
    display: none;
    padding: 20px 5%;
    margin-top: 20px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
    box-sizing: border-box;
    width: 100%;
}

#form-status.success {
    background-color: #28a745;
    color: #ffffff;
    display: block;
}

#form-status.error {
    background-color: #dc3545;
    color: #ffffff;
    display: block;
}

@media (min-width: 1200px) {
   #order-form-container {
       padding: 35px 15%;
   }
   #form-status {
        padding: 20px 15%;
   }
}
}


































#fw-section-custom-html-ecbe89fa-0221-4eef-9883-ebc9ef999dee {

body, html {
cursor: url('https://cdn.atxyz.dev/cursor_san_pointer_2.cur'), auto;
}

.a {
cursor: url('https://cdn.atxyz.dev/cursor_san_pointer.cur'), pointer;
}

}




















#fw-section-header {
--color-primary: #ffffff;
--color-primary-rgb: 255, 255, 255;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #ffffff;
--color-on-background-rgb: 255, 255, 255;
--color-product-image-background: #ffffff;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}