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

.property-create-page {
    min-height: 100vh;
    background: var(--caando-bg);
    color: var(--caando-ink);
    padding-bottom: 70px;
}

.property-create-cover {
    min-height: 210px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(23, 72, 63, .82), rgba(23, 72, 63, .68)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 42px, transparent 42px 118px),
        linear-gradient(135deg, #17483f, #21695c);
    color: #fff;
}

.property-create-cover h1 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 900;
}

.property-create-cover p {
    margin: 0;
    color: rgba(255,255,255,.82);
}

.property-create-shell {
    margin-top: -54px;
    position: relative;
    z-index: 1;
}

.property-form {
    display: grid;
    gap: 16px;
}

.form-card,
.success-alert,
.submit-bar {
    border: 1px solid var(--caando-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(23, 72, 63, .08);
}

.form-card {
    padding: 22px;
}

.form-card h2 {
    margin: 0 0 18px;
    color: var(--caando-green);
    font-size: 19px;
    font-weight: 900;
}

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

.form-grid label,
.wide-field,
.upload-box {
    display: grid;
    gap: 8px;
}

.wide,
.wide-field,
.upload-box {
    grid-column: 1 / -1;
}

.form-grid b,
.wide-field b,
.upload-box b {
    font-size: 13px;
}

.form-grid input,
.form-grid select,
.wide-field textarea,
.upload-box input {
    width: 100%;
    border: 1px solid var(--caando-border);
    border-radius: 13px;
    background: #fff;
    color: var(--caando-ink);
    outline: 0;
    padding: 0 13px;
}

.form-grid input,
.form-grid select {
    min-height: 46px;
}

.wide-field textarea {
    padding: 13px;
    line-height: 2;
    resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.wide-field textarea:focus {
    border-color: var(--caando-green);
    box-shadow: 0 0 0 3px rgba(33, 105, 92, .12);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.feature-grid label,
.switch-row {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    border: 1px solid var(--caando-border);
    border-radius: 13px;
    background: #fbfdfc;
    padding: 0 12px;
    font-weight: 800;
}

.feature-grid input,
.switch-row input {
    width: 18px;
    height: 18px;
    accent-color: var(--caando-green);
}

.upload-box {
    margin-top: 14px;
    border: 1px dashed var(--caando-border);
    border-radius: 14px;
    background: #fbfdfc;
    padding: 14px;
}

.upload-box small {
    color: var(--caando-muted);
}

.success-alert {
    margin-bottom: 16px;
    border-color: #b8dfce;
    background: #effaf4;
    color: #14532d;
    padding: 14px 18px;
    font-weight: 900;
}

.registration-path-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.registration-path-card article {
    border: 1px solid var(--caando-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(23, 72, 63, .08);
    padding: 22px;
}

.registration-path-card span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: var(--caando-honey-soft);
    color: #7a4c00;
    font-weight: 900;
}

.registration-path-card h2 {
    margin: 0 0 10px;
    color: var(--caando-green);
    font-size: 19px;
    font-weight: 900;
}

.registration-path-card p {
    min-height: 84px;
    margin: 0 0 18px;
    color: var(--caando-muted);
    line-height: 1.9;
}

.registration-path-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    background: var(--caando-green);
    color: #fff;
    padding: 0 16px;
    text-decoration: none;
    font-weight: 900;
}

.submit-bar {
    position: sticky;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
}

.submit-bar a,
.submit-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 13px;
    padding: 0 22px;
    font-weight: 900;
}

.submit-bar a {
    border: 1px solid var(--caando-border);
    color: var(--caando-muted);
    text-decoration: none;
}

.submit-bar button {
    border: 0;
    background: var(--caando-green);
    color: #fff;
}

.submit-bar button:hover {
    background: var(--caando-green-2);
}

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

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .registration-path-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .property-create-cover {
        min-height: 180px;
    }

    .property-create-cover h1 {
        font-size: 24px;
    }

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

    .form-card,
    .submit-bar {
        border-radius: 14px;
        padding: 16px;
    }

    .submit-bar {
        align-items: stretch;
        flex-direction: column;
    }
}
