:root {
    --rs-orange: #F26522;
    --rs-black: #1A1A1A;
    --rs-gold: #FFB81C;
    --rs-bg: #f2f2f2;
}

body { font-family: 'Open Sans', sans-serif; background-color: var(--rs-bg); margin: 0; padding: 20px; }

.container { max-width: 800px; margin: 0 auto; background: white; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); overflow: hidden; border-top: 10px solid var(--rs-orange); }

.progress-container { width: 100%; height: 8px; background: #eee; }
#progress-bar { width: 16.6%; height: 100%; background: var(--rs-gold); transition: 0.4s; }

.header { padding: 40px; text-align: center; border-bottom: 1px solid #eee; }
.logo-img { max-width: 280px; height: auto; margin-bottom: 10px; }
.portal-label { font-family: 'Montserrat'; letter-spacing: 3px; color: #888; font-size: 12px; font-weight: 700; text-transform: uppercase; }

.form-content { padding: 40px; }
.step { display: none; }
.step.active { display: block; }

h2 { font-family: 'Montserrat'; font-size: 22px; margin-bottom: 30px; display: flex; align-items: center; }
h2::before { content: ""; width: 8px; height: 26px; background: var(--rs-orange); margin-right: 15px; border-radius: 4px; }

.form-group { margin-bottom: 25px; }
label { display: block; font-weight: 600; margin-bottom: 10px; font-size: 14px; }

input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="date"], select, textarea {
    width: 100%; padding: 14px; border: 2px solid #edeff2; border-radius: 10px; font-size: 16px; box-sizing: border-box;
}

.gender-box { display: flex; gap: 40px; padding: 10px 0; }
.radio-option { display: flex; align-items: center; gap: 10px; font-weight: 400 !important; cursor: pointer; width: auto !important; }
.radio-option input { width: 20px; height: 20px; margin: 0; cursor: pointer; }

.btn-row { display: flex; gap: 15px; margin-top: 40px; }
button { padding: 16px 32px; border: none; border-radius: 10px; font-family: 'Montserrat'; font-weight: 700; cursor: pointer; text-transform: uppercase; transition: 0.3s; }
.btn-next { background: var(--rs-black); color: white; flex: 2; }
.btn-next:hover { background: var(--rs-orange); }
.btn-prev { background: #e0e0e0; color: #444; flex: 1; }
.btn-submit { background: var(--rs-orange); color: white; flex: 2; }

.dec-box { background: #FFF9F2; padding: 30px; border-radius: 12px; border: 1px dashed var(--rs-orange); line-height: 1.8; font-size: 15px; margin-bottom: 30px; }
#candidate-name-span { color: var(--rs-orange); font-weight: 700; }