html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #1f2021;
    color: white;
}

body {
    display: flex;
    justify-content: center;
}

.app-container {
    width: 100%;
    max-width: 420px;
    padding: 30px 20px 50px;
    box-sizing: border-box;
}

h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
}

.intro {
    text-align: center;
    color: #cfcfcf;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 18px;
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: bold;
}

input,
select {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background: white;
    color: #222;
}

button {
    margin-top: 28px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    background: #6ae5e0;
    color: #111;
    cursor: pointer;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#message {
    margin-top: 20px;
    text-align: center;
    line-height: 1.4;
}

#showSignup,
#showLogin {
    color: #4da6ff;
    font-weight: bold;
    text-decoration: none;
}

#showSignup:hover,
#showLogin:hover {
    color: #80c1ff;
    text-decoration: underline;
}

.reward-wallet-card {
    padding: 20px 0;
    border-bottom: 1px solid #444;
}

.reward-wallet-card:last-child {
    border-bottom: none;
}

.rewards-divider {
    border: 0;
    border-top: 1px solid #888;
    margin: 18px 0 8px 0;
}

.reward-wallet-card {
    padding: 12px 0 18px 0;
    border-bottom: 1px solid #888;
}

.reward-wallet-card h3 {
    margin-top: 6px;
}

.reward-status {
    margin-bottom: 8px;
}

.viewVoucherButton {
    margin-top: 0;
}

.location-list-card {
    padding: 14px 0 18px 0;
    border-bottom: 1px solid #888;
}

.location-list-card:last-child {
    border-bottom: none;
}

.location-list-card h3 {
    margin-top: 6px;
}

.location-completed {
    font-weight: bold;
}

#missionTitle {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 18px;
}
/* Step 63 — CDulu Quest branding on User Login */
.login-brand {
    text-align: center;
    margin-bottom: 28px;
}

.login-brand-name {
    margin: 0 0 4px;
    color: #6ae5e0;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 700;
}

.login-brand-tagline {
    margin: 0;
    color: #cfcfcf;
    font-size: 18px;
    font-style: italic;
}
