:root {
    --caando-green: #1d5f91;
    --caando-green-2: #2563eb;
    --caando-honey: #38bdf8;
    --caando-honey-soft: #eaf6ff;
    --caando-ink: #173550;
    --caando-muted: #657f98;
    --caando-border: #c6d9e8;
    --caando-bg: #edf5fb;
    --caando-danger: #b42318;
}

.normal-register-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px 14px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, .16), transparent 34%),
        linear-gradient(180deg, rgba(37, 99, 235, .08), rgba(243, 247, 246, 1)),
        var(--caando-bg);
    color: var(--caando-ink);
}

.normal-register-card {
    width: min(460px, 100%);
    border: 1px solid var(--caando-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(29, 72, 111, .12);
    padding: 28px;
}

.normal-register-card.wide {
    width: min(720px, 100%);
}

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--caando-green);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.register-brand {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: var(--caando-honey-soft);
    color: #1d5f91;
    font-size: 24px;
    font-weight: 900;
}

.normal-register-card h1 {
    margin: 0 0 10px;
    text-align: center;
    color: var(--caando-green);
    font-size: 25px;
    font-weight: 900;
}

.normal-register-card p {
    margin: 0 0 24px;
    text-align: center;
    color: var(--caando-muted);
    line-height: 1.9;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field b {
    font-size: 13px;
}

.field input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--caando-border);
    border-radius: 13px;
    background: #fff;
    color: var(--caando-ink);
    outline: 0;
    padding: 0 13px;
}

.field input:focus {
    border-color: var(--caando-green);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

button[type="submit"] {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 14px;
    background: var(--caando-green);
    color: #fff;
    font-weight: 900;
}

button[type="submit"]:hover {
    background: var(--caando-green-2);
}

.register-note,
.dev-code {
    margin-top: 16px;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.8;
}

.register-note {
    background: #f8fbfa;
    color: var(--caando-muted);
}

.dev-code {
    margin-bottom: 18px;
    border: 1px dashed var(--caando-honey);
    background: var(--caando-honey-soft);
    color: #1d5f91;
}

.field-validation-error,
.validation-summary {
    color: var(--caando-danger);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .normal-register-card {
        border-radius: 16px;
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .normal-register-card h1 {
        font-size: 22px;
    }
}


/* V20.5.2 mobile entry */
.normal-register-entry{padding-top:34px}
.mobile-entry-icon{display:grid;place-items:center;width:74px;height:74px;margin:0 auto 18px;border-radius:22px;background:linear-gradient(145deg,#eaf6ff,#dcefff);color:#2563eb;border:1px solid #c3dff2;box-shadow:0 12px 30px rgba(37,99,235,.10)}
.mobile-entry-icon svg{width:34px;height:34px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.register-note-actions{display:flex;align-items:center;justify-content:center;gap:7px;flex-wrap:wrap;text-align:center}
.register-note-actions a{color:#1d5f91;font-weight:900;text-decoration:none}
.register-note-actions a:hover{color:#2563eb;text-decoration:underline}
