/* ==============================
   PPA Registration – Gold Theme
============================== */

.ppa-register-wrap {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background: #fdfbf7;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    font-family: "Poppins", sans-serif;
}

#ppa-registration-form h3 {
    text-align: center;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
}

#ppa-registration-form label {
    display: block;
    margin-top: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

#ppa-registration-form input,
#ppa-registration-form select {
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.2s ease;
}

#ppa-registration-form input:focus,
#ppa-registration-form select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

/* RADIO GROUP */
#ppa-registration-form input[type="radio"] {
    width: auto;
    margin-right: 6px;
}

#ppa-registration-form label input[type="radio"] {
    margin-right: 6px;
}

/* COMPUTER FIELD BOX */
#computer-field {
    margin-top: 12px;
    padding: 12px;
    background: #fff7e6;
    border-radius: 10px;
    border: 1px dashed #d4af37;
}

/* SUBMIT BUTTON */
#ppa-registration-form button {
    width: 100%;
    margin-top: 35px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #1a1a1a;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#ppa-registration-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

/* SUCCESS / ERROR MESSAGE */
#ppa-form-msg {
    margin-top: 18px;
    text-align: center;
    font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 600px) {
    .ppa-register-wrap {
        padding: 25px;
        margin: 30px 15px;
    }
}
