/*****************************************
   GLOBAL NEON + MODAL STYLES
******************************************/

.reg-input {
    width: 100%;
    padding: 10px;
    background: #050608;
    border: 1px solid #00ffea;
    border-radius: 8px;
    color: #e0faff;
    font-family: 'Rajdhani', sans-serif;
}

.reg-input::placeholder {
    color: #8ecae6;
}

/* Choice buttons (YES/NO) */
.choice-btn {
    border: 1px solid #0dd;
    padding: .5rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: .95rem;
    min-width: 96px;
    text-align: center;
    margin-right: .5rem;
    margin-bottom: .4rem;
    background: #0a0a0a;
    color: #d0faff;
    transition: .2s;
}

.choice-btn:hover {
    background: #00ffea;
    color: #000;
    box-shadow: 0 0 8px #00ffea;
}

.choice-btn.active {
    background: #00ffea;
    color: #000;
    box-shadow: 0 0 10px #00ffea;
}