/* ==========================================
   OpenGigs Signup Wizard
   signup.css
========================================== */

:root{

    --gold:#F5C451;
    --gold-hover:#FFD76A;

    --bg:#0f0f0f;
    --card:#1a1a1a;

    --white:#ffffff;

    --text:#e7e7e7;
    --muted:#b8b8b8;

    --border:rgba(255,255,255,.08);

    --radius:18px;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--white);

    background:url("images/background.jpg") center center/cover no-repeat fixed;

    min-height:100vh;

}

.background-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.72);

    backdrop-filter:blur(3px);

    z-index:-1;

}

.signup-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

    padding:60px 20px;

}

.signup-card{

    width:100%;

    max-width:760px;

    background:rgba(22,22,22,.92);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:45px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

}

.logo{

    width:180px;

    display:block;

    margin:0 auto 25px;

}

h1{

    text-align:center;

    font-size:2.2rem;

    margin-bottom:10px;

}

.subtitle{

    text-align:center;

    color:var(--muted);

    margin-bottom:40px;

}

.progress-area{

    margin-bottom:45px;

}

.progress-text{

    text-align:center;

    font-size:.95rem;

    color:var(--gold);

    font-weight:600;

    margin-bottom:12px;

}

.progress-bar{

    width:100%;

    height:10px;

    background:#2b2b2b;

    border-radius:20px;

    overflow:hidden;

}

.progress-fill{

    width:20%;

    height:100%;

    background:linear-gradient(90deg,#F5C451,#FFD76A);

    transition:.4s;

}

.step{

    display:none;

    animation:fade .35s ease;

}

.step.active{

    display:block;

}

@keyframes fade{

from{

opacity:0;

transform:translateY(15px);

}

to{

opacity:1;

transform:translateY(0);

}

}

h2{

    color:var(--gold);

    margin-bottom:25px;

    font-size:1.4rem;

}

label{

    display:block;

    margin-top:18px;

    margin-bottom:8px;

    font-size:.95rem;

    font-weight:500;

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

input,
select,
textarea{

    width:100%;

    padding:16px 18px;

    border-radius:14px;

    border:1px solid var(--border);

    background:#262626;

    color:white;

    font-size:1rem;

    font-family:'Poppins',sans-serif;

    transition:.25s;

}

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 3px rgba(245,196,81,.15);

}

textarea{

    resize:vertical;

    min-height:150px;

}
/* ==========================================
   BUTTONS
========================================== */

.buttons{

    display:flex;

    justify-content:space-between;

    gap:15px;

    margin-top:40px;

}

.back,
.next,
.submit-btn{

    flex:1;

    padding:16px;

    border:none;

    border-radius:14px;

    font-size:1rem;

    font-weight:600;

    font-family:'Poppins',sans-serif;

    cursor:pointer;

    transition:.30s;

}

.back{

    background:#000000;

    color:white;

}

.back:hover{

    background:#3b3b3b;

    transform:translateY(-2px);

}

.next{

    background:linear-gradient(135deg,#F5C451,#FFD76A);

    color:#111;

}

.next:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(245,196,81,.35);

}

.submit-btn{

    background:linear-gradient(135deg,#F5C451,#FFD76A);

    color:#111;

}

.submit-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(245,196,81,.45);

}

/* ==========================================
   OPENGIGS CUSTOM CHECKBOXES
========================================== */

.signup-checkbox{

    margin:24px 0;

}

.checkbox-label{

    display:flex;
    align-items:flex-start;
    gap:16px;

    cursor:pointer;

    color:#ffffff;

    font-size:18px;
    line-height:1.6;

    width:100%;

}

.checkbox-label input{

    display:none;

}

.custom-checkbox{

    width:28px;
    height:28px;

    min-width:28px;

    border:2px solid #F5C451;

    border-radius:8px;

    margin-top:2px;

    transition:all .25s ease;

    position:relative;

    flex-shrink:0;

}

.checkbox-label:hover .custom-checkbox{

    border-color:#FFD76A;

    box-shadow:0 0 12px rgba(245,196,81,.35);

}

.checkbox-label input:checked + .custom-checkbox{

    background:#F5C451;

}

.checkbox-label input:checked + .custom-checkbox::after{

    content:"✓";

    position:absolute;

    left:50%;
    top:47%;

    transform:translate(-50%,-50%);

    color:#111111;

    font-size:19px;
    font-weight:700;

}

.checkbox-text{

    flex:1;

    color:#f1f1f1;

}

.checkbox-text a{

    color:#F5C451;

    font-weight:600;

    text-decoration:none;

}

.checkbox-text a:hover{

    color:#FFD76A;

    text-decoration:underline;

}
/* ==========================================
   FILE UPLOAD
========================================== */

input[type=file]{

    background:#222;

    padding:12px;

    cursor:pointer;

}

input[type=file]::file-selector-button{

    background:#F5C451;

    color:#111;

    border:none;

    padding:10px 18px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    margin-right:15px;

}

input[type=file]::file-selector-button:hover{

    background:#FFD76A;

}

/* ==========================================
   REVIEW PAGE
========================================== */

.review-text{

    color:#cfcfcf;

    margin-bottom:25px;

    line-height:1.7;

}

/* ==========================================
   LINKS
========================================== */

a{

    color:#F5C451;

    text-decoration:none;

}

a:hover{

    color:#FFD76A;

}

/* ==========================================
   PLACEHOLDERS
========================================== */

::placeholder{

    color:#8f8f8f;

}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#151515;

}

::-webkit-scrollbar-thumb{

    background:#555;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#777;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.signup-card{

padding:30px;

}

.form-grid{

grid-template-columns:1fr;

}

.buttons{

flex-direction:column;

}

.logo{

width:150px;

}

h1{

font-size:1.8rem;

}

h2{

font-size:1.2rem;

}

.progress-text{

font-size:.9rem;

}

}

@media(max-width:480px){

body{

padding:15px;

}

.signup-wrapper{

padding:20px 10px;

}

.signup-card{

padding:22px;

border-radius:18px;

}

input,
select,
textarea{

padding:14px;

font-size:.95rem;

}

.back,
.next,
.submit-btn{

padding:14px;

font-size:.95rem;

}

.logo{

width:130px;

}

}

/* ==========================================
   NICE TOUCHES
========================================== */

.signup-card{

animation:cardFade .6s ease;

}

@keyframes cardFade{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

input:hover,
select:hover,
textarea:hover{

border-color:rgba(245,196,81,.40);

}

.step{

min-height:500px;

}

.progress-fill{

transition:width .35s ease-in-out;

}
/*=========================================
ACCOUNT SELECTION PAGE
=========================================*/

.account-wrapper{

max-width:1100px;

margin:auto;

min-height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:60px 20px;

}

.account-cards{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

width:100%;

margin-top:50px;

}

.account-card{

background:rgba(25,25,25,.90);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:45px;

text-align:center;

text-decoration:none;

transition:.35s;

color:white;

}

.account-card:hover{

transform:translateY(-10px);

border-color:#F5C451;

box-shadow:0 25px 60px rgba(0,0,0,.40);

}

.account-icon{

font-size:70px;

margin-bottom:20px;

}

.account-card h2{

color:#F5C451;

margin-bottom:20px;

}

.account-card p{

color:#bbbbbb;

line-height:1.8;

margin-bottom:35px;

}

.account-card span{

font-weight:700;

font-size:18px;

color:#F5C451;

}

.back-home{

margin-top:45px;

color:#F5C451;

text-decoration:none;

font-weight:600;

}

.back-home:hover{

color:white;

}

@media(max-width:900px){

.account-cards{

grid-template-columns:1fr;

}

.account-card{

padding:35px;

}

}
/* ==========================================
   VENUE FEATURE CARDS
========================================== */

.feature-option{

    display:flex;

    align-items:center;

    justify-content:space-between;

    width:100%;

    padding:22px 28px;

    margin-bottom:18px;

    background:rgba(255,255,255,.02);

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    cursor:pointer;

    transition:.25s;

}

.feature-option:hover{

    border-color:#F5C451;

    background:rgba(245,196,81,.04);

    transform:translateY(-2px);

}

.feature-name{

    font-size:24px;

    font-weight:600;

    color:white;

}

.feature-option input{

    display:none;

}

.feature-option .custom-checkbox{

    width:30px;

    height:30px;

    border:2px solid #F5C451;

    border-radius:8px;

    position:relative;

    flex-shrink:0;

    transition:.25s;

}

.feature-option input:checked + .custom-checkbox{

    background:#F5C451;

}

.feature-option input:checked + .custom-checkbox::after{

    content:"✓";

    position:absolute;

    left:50%;

    top:48%;

    transform:translate(-50%,-50%);

    color:#111;

    font-size:20px;

    font-weight:700;

}

.feature-option:hover .custom-checkbox{

    box-shadow:0 0 12px rgba(245,196,81,.35);

}