.elementor-81 .elementor-element.elementor-element-55be118d{--display:flex;}/* Start custom CSS *//* =========================================================
   ARTIST FORM PREMIUM REDESIGN
========================================================= */

#gform_wrapper_3 {
    max-width: 920px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, #0f0f0f, #1b1b1b);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 15px 50px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
}

/* =========================================================
   TITLE
========================================================= */

#gform_wrapper_3 .gform_title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

/* =========================================================
   GRID LAYOUT
========================================================= */

#gform_fields_3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

#field_3_4,
#field_3_5,
#field_3_6,
#field_3_8 {
    grid-column: span 2;
}

/* =========================================================
   LABELS
========================================================= */

#gform_wrapper_3 .gfield_label {
    color: #d5d5d5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.4px;
}

/* =========================================================
   INPUT FIELDS
========================================================= */

#gform_wrapper_3 input[type="text"] {
    width: 100%;
    height: 60px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    padding: 0 20px;
    color: #fff;
    font-size: 15px;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    box-sizing: border-box;
}

#gform_wrapper_3 input[type="text"]:focus {
    outline: none;
    border-color: #1DB954;
    background: rgba(29,185,84,0.08);
    box-shadow:
        0 0 0 4px rgba(29,185,84,0.12),
        0 10px 25px rgba(29,185,84,0.15);
}

#gform_wrapper_3 input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* =========================================================
   SPOTIFY SECTION
========================================================= */

#field_3_8 {
    margin-top: 10px;
}

#field_3_8 .gfield_label {
    color: #1DB954;
    font-size: 18px;
    font-weight: 700;
}

/* =========================================================
   SEARCH SHELL
========================================================= */

.gfas-shell {
    position: relative;
    padding: 14px;
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(29,185,84,0.12),
            rgba(255,255,255,0.03)
        );
    border: 1px solid rgba(29,185,84,0.25);
    transition: all 0.3s ease;
}

.gfas-shell:focus-within {
    transform: translateY(-2px);
    box-shadow:
        0 15px 45px rgba(29,185,84,0.2),
        0 0 0 2px rgba(29,185,84,0.15);
}

/* =========================================================
   SEARCH INPUT
========================================================= */

.gfas-input-wrap {
    position: relative;
}

.gfas-search {
    width: 100%;
    height: 62px;
    border: none;
    border-radius: 18px;
    background: rgba(0,0,0,0.25);
    padding: 0 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    box-sizing: border-box;
}

.gfas-search:focus {
    outline: none;
}

.gfas-search::placeholder {
    color: rgba(255,255,255,0.45);
}

/* =========================================================
   DROPDOWN
========================================================= */

.gfas-dropdown {
    margin-top: 14px;
    background: #171717;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    max-height: 350px;
    overflow-y: auto;
    padding: 8px;
}

/* =========================================================
   RESULT LIST
========================================================= */

.gfas-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================================
   SINGLE RESULT ITEM
========================================================= */

.gfas-result {
    display: flex !important;
    align-items: center !important;
    gap: 14px;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    transition: all 0.25s ease;
    cursor: pointer;
    box-sizing: border-box;
}

/* =========================================================
   RESULT HOVER
========================================================= */

.gfas-result:hover {
    background: rgba(29,185,84,0.12);
    transform: translateX(4px);
}

.gfas-result[aria-selected="true"] {
    background: rgba(29,185,84,0.18);
}

/* =========================================================
   LEFT SIDE IMAGE
========================================================= */

.gfas-result-img {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px;
    max-width: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block !important;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.08);
}

/* =========================================================
   RIGHT SIDE TEXT AREA
========================================================= */

.gfas-result-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* =========================================================
   ARTIST NAME
========================================================= */

.gfas-result-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================
   SUBTEXT
========================================================= */

.gfas-result-sub {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin-top: 4px;
}

/* =========================================================
   SELECTED CHIPS
========================================================= */

.gfas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.gfas-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1DB954;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow:
        0 8px 18px rgba(29,185,84,0.28);
}

/* =========================================================
   CREATE BUTTON
========================================================= */

.gfas-create {
    width: 100%;
    margin-top: 12px;
    border: none;
    border-radius: 14px;
    background: #1DB954;
    color: #fff;
    padding: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gfas-create:hover {
    background: #1ed760;
    transform: translateY(-1px);
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

#gform_submit_button_3 {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 20px;
    background:
        linear-gradient(135deg, #1DB954, #18a449);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-top: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 12px 30px rgba(29,185,84,0.25);
}

#gform_submit_button_3:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 40px rgba(29,185,84,0.35);
}

/* =========================================================
   SCROLLBAR
========================================================= */

.gfas-dropdown::-webkit-scrollbar {
    width: 6px;
}

.gfas-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 30px;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    #gform_wrapper_3 {
        padding: 24px;
        margin: 20px;
    }

    #gform_fields_3 {
        grid-template-columns: 1fr;
    }

    #field_3_4,
    #field_3_5,
    #field_3_6,
    #field_3_8 {
        grid-column: span 1;
    }

    #gform_wrapper_3 .gform_title {
        font-size: 30px;
    }

    .gfas-search {
        height: 56px;
    }
}/* End custom CSS */