:root{--bg:#0f1216;--panel:#171b22;--panel2:#10141b;--text:#f4f7fb;--muted:#aeb7c6;--line:rgba(255,255,255,.12);--accent:#e06eab;--accent2:#5a52a3;--ok:#58d68d;--err:#ff6b6b}*{box-sizing:border-box}
body{margin:0;font-family:Inter,Arial,sans-serif;background:transparent;color:var(--text)}
.rs-shell{min-height:100vh;padding:18px;background:linear-gradient(145deg,var(--bg),#151827)}
.rs-card{
    width:min(940px,100%);
    margin:0 auto;
    padding:clamp(22px,4vw,42px);
    /*
    border:1px solid var(--line);
    border-radius:28px;
    background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02)),var(--panel);
    */
    background: #35013F;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
    margin-top:40px;
}

.rs-header{margin-bottom:28px}.rs-eyebrow{margin:0 0 8px;color:var(--accent);text-transform:uppercase;letter-spacing:.18em;font-size:12px;font-weight:800}
.rs-header h1{margin:0 0 12px;font-size:clamp(28px,5vw,48px);line-height:1.05}
.rs-lead{margin:0;color:var(--muted);font-size:17px;line-height:1.55}
.rs-section{
    padding:22px;
    /*
    border:1px solid var(--line);
    border-radius:22px;
    background:var(--panel2);
    */
    background: #231226;
    margin-bottom:18px;
}
.rs-section h2{margin:0 0 18px;font-size:18px}
.rs-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
label span{
    display:block;margin:0 0 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 300;
}
input,select,textarea{width:100%;border:1px solid rgba(255,255,255,.16);border-radius:14px;background:#0b0e13;color:var(--text);padding:13px 14px;font:inherit;outline:none;transition:.2s border-color,.2s box-shadow}

input:focus,select:focus,textarea:focus{
    /*
    border-color:var(--accent);
    box-shadow:0 0 0 4px rgba(224,110,171,.12)
    */
    border-color: #fff!important;
    color:#fff!important
}

select option{
    background:#151A21;
    color:#fff;
}

input[readonly]{opacity:.72;background:#111827}textarea{resize:vertical}
.rs-full{display:block;margin-top:16px}
.rs-privacy{margin:18px 0}.rs-check{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:14px}
.rs-privacy span a{
    color: #e06eab;  
    text-decoration:none;
}
.rs-privacy span a:hover{

    color: #fff;  
}




.rs-check input{width:auto;margin-top:3px;accent-color:var(--accent)}
.rs-button{width:230px;margin-top:18px;border:0;border-radius:999px;padding:16px 22px;background:linear-gradient(90deg, #951556 0%, #7000A4 100%)!important;color:white;font-weight:400;font-size:16px;cursor:pointer;box-shadow:0 14px 35px rgba(224,110,171,.25);text-decoration: none;transition:.2s transform,.2s opacity}
.rs-button:hover{background: linear-gradient(90deg, #7000A4 0%, #951556 100%) !important;}
.rs-button:disabled{cursor:not-allowed;opacity:.68;transform:none}
.rs-alert{border-radius:16px;padding:14px 16px;margin-bottom:18px;line-height:1.45}
.rs-alert.success{background:rgba(88,214,141,.12);border:1px solid rgba(88,214,141,.32);color:#d9ffe8}
.rs-alert.error{background:rgba(255,107,107,.12);border:1px solid rgba(255,107,107,.32);color:#ffe0e0}
.rs-hidden{display:none!important}

.success-card{
    width:100%;
    /*
    background:#151A21;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    */
    background:#231226;
    padding:42px 28px;
    text-align:center;
    color:#fff;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.success-icon{
    width:80px;
    height:80px;
    margin:0 auto 24px;
    border-radius:50%;
    background:rgba(79,163,165,.12);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}
.success-card h2{
    margin:0 0 14px;
    font-size:28px;
}
.success-card p{
    margin:0 0 40px 0;
    color:#B8C0CC;
    line-height:1.6;
}


input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    transition: .35s;
    background: rgba(53, 1, 63, 0);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgba(243, 240, 244, 0.3);
    border-radius: 0px;
    padding-top: 16px;
    padding-right: 0px;
    padding-bottom: 16px;
    padding-left: 0px;
}

@media (max-width:700px){
    .rs-shell{padding:10px}
    .rs-card{padding:20px}
    .rs-grid{grid-template-columns:1fr}
    .rs-section{padding:16px;}
    .rs-header h1{font-size:30px}
}
