:root {
    --caando-green: #17483f;
    --caando-green-2: #21695c;
    --caando-honey: #f2b441;
    --caando-honey-soft: #fff5dc;
    --caando-ink: #17211f;
    --caando-muted: #6b7a78;
    --caando-border: #d9e4e1;
    --caando-bg: #f3f7f6;
    --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(242, 180, 65, .20), transparent 34%),
        linear-gradient(180deg, rgba(23, 72, 63, .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(23, 72, 63, .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: #7a4c00;
    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(33, 105, 92, .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: #7a4c00;
}

.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;
    }
}
