:root {
    --primary: #002341;
    --gold: #FFBE00;
}

/* HEADER */
.register-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}

.register-badge {
    display: inline-block;
    background: rgba(255,190,0,.15);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 12px;
}

.register-subtitle {
    color: #555;
    font-size: 1rem;
}

/* CARDS */
.registration-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

/* STEPS */
.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-help {
    font-size: .95rem;
    color: #666;
    margin-bottom: 20px;
}

/* FORM */
.form-group label {
    font-weight: 600;
    font-size: .9rem;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 12px 14px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* BUTTON */
.btn-register {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-register:hover {
    background: #001a30;
}

/* SIDEBAR */
.sticky-summary {
    position: sticky;
    top: 140px;
}

/* MOBILE */
@media (max-width: 768px) {
    .register-header h1 {
        font-size: 1.9rem;
    }

    .sticky-summary {
        position: static;
        margin-top: 30px;
    }
}
