/* Start custom CSS for html, class: .elementor-element-abafe4b */```css
/* ==========================
   GRAPHIC ROOM STUDIO FORM
========================== */

.grs-form-page{
    padding:100px 20px;
    background:#050505;
}

.grs-container{
    max-width:1000px;
    margin:auto;
}

/* HEADER */

.grs-form-header{
    text-align:center;
    margin-bottom:50px;
}

.grs-badge{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(212,175,55,.35);
    border-radius:50px;
    color:#d4af37;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

#formHeading{
    font-size:58px;
    line-height:1.1;
    color:#fff;
    font-weight:800;
    margin-bottom:15px;
}

#formDescription{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto;
}

/* FORM BOX */

.grs-form{
    background:#0b0b0b;
    border:1px solid rgba(212,175,55,.15);
    border-radius:28px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

/* GRID */

.grs-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* FIELD */

.grs-field{
    margin-bottom:22px;
}

.grs-field label{
    display:block;
    margin-bottom:10px;
    color:#d4af37;
    font-size:14px;
    font-weight:600;
}

/* INPUTS */

.grs-field input,
.grs-field textarea{
    width:100%;
    background:#111;
    border:1px solid #222;
    border-radius:14px;
    padding:16px 18px;
    color:#fff;
    font-size:15px;
    transition:.3s ease;
    outline:none;
    box-sizing:border-box;
}

.grs-field input::placeholder,
.grs-field textarea::placeholder{
    color:#777;
}

.grs-field input:focus,
.grs-field textarea:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.12);
}

.grs-field textarea{
    resize:vertical;
    min-height:180px;
}

/* BUTTON */

.grs-btn{
    width:100%;
    border:none;
    cursor:pointer;
    padding:18px;
    border-radius:16px;

    background:linear-gradient(
        135deg,
        #d4af37,
        #f3d46c
    );

    color:#000;
    font-size:16px;
    font-weight:700;
    transition:.35s ease;
}

.grs-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 35px rgba(212,175,55,.30);
}

/* MOBILE */

@media(max-width:768px){

    .grs-form-page{
        padding:70px 15px;
    }

    .grs-form{
        padding:25px;
    }

    .grs-grid{
        grid-template-columns:1fr;
    }

    #formHeading{
        font-size:38px;
    }

    #formDescription{
        font-size:15px;
    }

}/* End custom CSS */