/* ---- base you already had ---- */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
}

.signup-step {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 20px 20px;
    box-sizing: border-box;
}

h2 {
    font-size: 24px;
    margin: 0 5px 0 0;
}

p {
    font-size: 16px;
    margin: 15px 0 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.feature-list li {
    background: #eee;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 12px;
    font-weight: 500;
}

.country-select label {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
}

.country-select input[type=radio] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #800000;
    border-radius: 50%;
    margin-right: 12px;
}

.country-select input[type=radio]:checked {
    background: #800000;
}

input[type=tel],
input[type=text],
input[type=email],
input[type=password] {
    width: 100%;
    padding: 14px;
    border: 2px solid #800000;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.next-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #800000;
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.next-btn:hover {
    background: #a00000;
}

.consent-text {
    font-size: 13px;
    margin-bottom: 20px;
    color: #444;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    z-index: 10;
    padding: 0;
}

.back-btn i {
    font-size: 20px;
}

/* ---- additions for new screens ---- */
.resend-link {
    text-align: center;
    display: block;
    margin: 10px 0;
    color: #63a8ff;
    font-weight: 600;
    text-decoration: none;
}

.logo {
    display: block;
    width: 100px;
    margin: 10px auto 20px;
}

.age-check {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 25px;
}

.age-check input {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #800000;
    border-radius: 50%;
    margin-right: 12px;
}

.age-check input:checked {
    background: #800000;
}

/* password + eye */
.pw-wrapper {
    position: relative;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    margin-top: -9px;
}

.toggle-eye.fa-eye::before,
.toggle-eye.fa-eye-slash::before {
    width: 22px;
    display: inline-block;
    text-align: center;
}

/* readonly email display */
.readonly-display {
    padding: 12px;
    border: 2px solid #800000;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    word-break: break-word;
    margin-bottom: 20px;
}

.terms {
    text-align: center;
    font-size: 11px;
}