/* For Lunor Visuals
   © Daniel Cantero Marzari
   Handcrafted visual design with intent and soul
   Do not copy or redistribute. */
   
.lv_form_wrapper {
position: relative;
z-index: 2;
max-width: 1200px;
margin: 0 auto;
padding: 180px 40px;
}
@media only screen and (max-width: 480px) {
.lv_form_wrapper {
max-width: 800px;
padding: 130px 20px;
}
}
.lv_form_row {
display: flex;
flex-wrap: wrap;
gap: 24px;
margin-bottom: 24px;
}
.lv_form_row .lv_form_group {
flex: 1;
min-width: 260px;
}
.lv_form_group input,
.lv_form_group textarea,
.lv_form_group select {
width: 100%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
color: #fff;
padding: 12px 14px;
font-family: "Exo", "Outfit", sans-serif;
font-size: 1rem;
outline: none;
transition: border-color 0.3s ease, background 0.3s ease;
}
.lv_form_group input:focus,
.lv_form_group textarea:focus,
.lv_form_group select:focus {
border-color: rgba(217, 199, 163, 0.5);
background: rgba(255, 255, 255, 0.08);
}
.lv_select_dark {
appearance: none;
background: linear-gradient(145deg, rgba(10,13,28,0.9), rgba(15,18,35,0.9));
border: 1px solid rgba(217,199,163,0.25);
color: #D9C7A3;
padding-right: 2.5rem;
background-image: url('data:image/svg+xml;utf8,<svg fill="%23D9C7A3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
background-repeat: no-repeat;
background-position: right 12px center;
background-size: 18px;
cursor: pointer;
}
.lv_select_dark option {
background-color: #0A0D1C;
color: #fff;
}
.lv_form_group label {
display: block;
margin-top: 8px;
color: #fff;
font-size: 0.9rem;
letter-spacing: 0.03em;
}
.lv_form_upload {
display: flex;
align-items: center;
justify-content: center;
height: 56px;
background: rgba(255, 255, 255, 0.04);
border: 1px dashed rgba(255, 255, 255, 0.2);
border-radius: 8px;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
margin: 24px 0;
padding: 14px;
transition: background 0.3s ease, border-color 0.3s ease;
}
.lv_form_upload:hover {
background: rgba(255, 255, 255, 0.07);
border-color: rgba(217, 199, 163, 0.4);
}
.lv_checkbox_wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
cursor: pointer;
color: rgba(255, 255, 255, 0.85);
font-size: 0.95rem;
margin-bottom: 90px;
}
.lv_checkbox_wrapper input[type="checkbox"] {
appearance: none;
width: 22px;
height: 22px;
border: 2px solid rgba(217, 199, 163, 0.45);
border-radius: 6px;
background: transparent;
transition: all 0.3s ease;
box-shadow: 0 0 5px rgba(217, 199, 163, 0.15);
}
.lv_checkbox_wrapper input[type="checkbox"]:checked {
background: linear-gradient(145deg, #D9C7A3, #bda87b);
border-color: rgba(217, 199, 163, 1);
box-shadow: 0 0 10px rgba(217, 199, 163, 0.4);
}
.lv_checkbox_wrapper input[type="checkbox"]:checked::after {
content: "✔";
position: absolute;
color: #0A0D1C;
font-weight: 700;
font-size: 1rem;
left: 4px;
top: -1px;
}
.lv_project_request_bg {
position: absolute;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
filter: brightness(0.45);
}
.lv_form_section {
position: relative;
overflow: hidden;
}
.lv_form_wrapper::-webkit-scrollbar {
width: 6px;
}
.lv_form_wrapper::-webkit-scrollbar-thumb {
border-radius: 100px;
background: linear-gradient(
to bottom,
transparent 0%,
rgba(217,199,163,0.5) 20%,
rgba(217,199,163,0.8) 50%,
rgba(217,199,163,0.5) 80%,
transparent 100%
);
box-shadow: 0 0 12px rgba(217,199,163,0.25);
}
.lv_form_wrapper::-webkit-scrollbar-thumb:hover {
background: linear-gradient(
to bottom,
transparent 0%,
rgba(217,199,163,0.7) 20%,
rgba(217,199,163,1) 50%,
rgba(217,199,163,0.7) 80%,
transparent 100%
);
}
.lv_form_step {
display: none;
opacity: 0;
transform: translateY(15px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.lv_form_step.lv_step_active {
display: block;
opacity: 1;
transform: translateY(0);
}
.lv_form_steps_indicator {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
margin-bottom: 40px;
}
.lv_step_circle {
width: 36px;
height: 36px;
border-radius: 50%;
border: 1.5px solid rgba(217,199,163,0.3);
color: rgba(217,199,163,0.6);
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.02);
transition: all 0.4s ease;
cursor: pointer;
}
.lv_step_circle.lv_active {
border-color: rgba(217,199,163,0.9);
color: #D9C7A3;
background: rgba(217,199,163,0.1);
box-shadow: 0 0 10px rgba(217,199,163,0.25);
}
.lv_step_circle:not(.lv_active):hover {
border-color: rgba(217,199,163,0.5);
color: rgba(217,199,163,0.8);
background: rgba(255,255,255,0.04);
box-shadow: 0 0 6px rgba(217,199,163,0.2);
transform: scale(1.08);
}
.lv_step_line {
flex: 0 0 42px;
height: 1.5px;
background: rgba(217,199,163,0.25);
}
.lv_step_circle.lv_active + .lv_step_line {
background: rgba(217,199,163,0.7);
}
.lv_form_footer {
position: relative;
width: 100%;
height: 80px;
margin-top: 40px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 3;
}
.lv_back_btn,
.lv_next_btn {
position: absolute;
top: 190px;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.2);
color: rgba(255,255,255,0.9);
font-family: "Outfit", sans-serif;
font-weight: 300;
letter-spacing: 0.18em;
text-transform: uppercase;
font-size: 0.9rem;
padding: 12px 42px;
border-radius: 60px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0 10px rgba(0,0,0,0.4);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
overflow: hidden;
isolation: isolate;
z-index: 10;
}
.lv_back_btn:hover,
.lv_next_btn:hover {
color: #fff;
border-color: rgba(255,255,255,0.4);
box-shadow: 0 0 22px rgba(217,199,163,0.25);
background: rgba(255,255,255,0.1);
}
.lv_back_btn { left: 0; }
.lv_next_btn { right: 0; }
@media (max-width: 600px) {
.lv_back_btn,
.lv_next_btn {
padding: 10px 26px;
font-size: 0.8rem;
border-radius: 44px;
top: 440px;
}
}
.lv_form_button[type="submit"] {
position: relative;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
color: rgba(255,255,255,0.9);
font-family: 'Outfit', sans-serif;
font-weight: 300;
letter-spacing: 0.18em;
text-transform: uppercase;
font-size: 0.9rem;
padding: 12px 42px;
border-radius: 60px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 0 10px rgba(0,0,0,0.4);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
isolation: isolate;
z-index: 10;
}
.lv_form_button[type="submit"]:hover {
color: #fff;
border-color: rgba(255,255,255,0.4);
box-shadow: 0 0 22px rgba(217,199,163,0.25);
background: rgba(255,255,255,0.1);
}
.lv_form_button[type="submit"]::before {
content: "";
position: absolute;
inset: 0;
left: -60%;
width: 50%;
height: 100%;
background: linear-gradient(
120deg,
transparent 0%,
rgba(255,255,255,0.25) 50%,
transparent 100%
);
transform: skewX(-20deg);
pointer-events: none;
z-index: 1;
}
.lv_form_button[type="submit"]:hover::before {
animation: lv_light_sweep 1.2s ease-out;
}
@keyframes lv_light_sweep {
0% { left: -80%; opacity: 0; }
50% { opacity: 1; }
100% { left: 130%; opacity: 0; }
}
@media (max-width: 600px) {
.lv_form_footer {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-top: 30px;
}
.lv_checkbox_wrapper {
flex: 1;
text-align: left;
font-size: 0.85rem;
line-height: 1.4;
color: rgba(255,255,255,0.8);
margin: 0;
}
.lv_form_button[type="submit"] {
padding: 10px 36px;
font-size: 0.8rem;
border-radius: 40px;
align-self: flex-start;
margin-left: 10px;
}
}
#lv_form_description {
resize: none;
height: 140px;
overflow: hidden;
min-height: 140px;
max-height: 140px;
}
.lv_form_group label,
.lv_checkbox_wrapper {
font-family: 'Exo', 'Outfit', sans-serif !important;
font-weight: 200;
letter-spacing: 0.05em;
color: rgba(255,255,255,0.85);
}
.lv_form_group input,
.lv_form_group textarea,
.lv_form_group select {
background-color: rgba(255, 255, 255, 0.05) !important;
color: #fff !important;
}
.lv_form_group input:-webkit-autofill,
.lv_form_group input:-webkit-autofill:hover,
.lv_form_group input:-webkit-autofill:focus,
.lv_form_group textarea:-webkit-autofill,
.lv_form_group select:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px rgba(10,13,28,0.95) inset !important;
-webkit-text-fill-color: #fff !important;
transition: background-color 5000s ease-in-out 0s !important;
}
.lv_form_group input:focus,
.lv_form_group textarea:focus,
.lv_form_group select:focus {
background: rgba(255, 255, 255, 0.08) !important;
border-color: rgba(217, 199, 163, 0.5) !important;
}