:root {
    --nc-text: #222222;
    --nc-muted: #555555;
    --nc-border: rgba(0, 0, 0, 0.12);
    --nc-panel: rgba(255, 255, 255, 0.92);
    --nc-success-bg: #edf7ed;
    --nc-success-border: #b8d8b8;
    --nc-error-bg: #fff0f0;
    --nc-error-border: #e4b5b5;
    --nc-button: #2e2e2e;
    --nc-button-hover: #111111;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--nc-text);
    background: #ececec;
}

body {
    min-height: 100vh;
    background-image:
        radial-gradient(circle at top left, rgba(255,255,255,0.85), rgba(255,255,255,0.45) 36%, transparent 37%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.55), rgba(255,255,255,0.15) 28%, transparent 29%),
        linear-gradient(135deg, #f4f4f4 0%, #e2e2e2 45%, #efefef 100%);
}

.nc-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.nc-card {
    width: 100%;
    max-width: 780px;
    background: var(--nc-panel);
    border: 1px solid var(--nc-border);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    padding: 28px;
}

.nc-hero {
    text-align: center;
    padding: 10px 0 28px;
}

.nc-logo-mark {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
}

.nc-logo {
	padding:20px;
}

.nc-brand {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 28px;
    margin-bottom: 16px;
}

.nc-tagline {
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.nc-section h1 {
    font-size: 32px;
    margin: 0 0 10px;
    font-weight: normal;
}

.nc-section p {
    margin: 0 0 22px;
    color: var(--nc-muted);
    font-size: 17px;
}

.nc-form {
    display: block;
}

.nc-row {
    margin-bottom: 18px;
}

.nc-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.nc-row input,
.nc-row textarea {
    width: 100%;
    border: 1px solid #c9c9c9;
    background: #ffffff;
    padding: 12px 14px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

.nc-row textarea {
    resize: vertical;
    min-height: 150px;
}

.nc-row input:focus,
.nc-row textarea:focus {
    outline: none;
    border-color: #888;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.nc-actions {
    margin-top: 10px;
}

.nc-actions button {
    border: 0;
    background: var(--nc-button);
    color: #fff;
    padding: 13px 26px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
}

.nc-actions button:hover {
    background: var(--nc-button-hover);
}

.nc-alert {
    padding: 14px 16px;
    margin: 0 0 22px;
    border: 1px solid;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
}

.nc-alert ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.nc-alert-success {
    background: var(--nc-success-bg);
    border-color: var(--nc-success-border);
}

.nc-alert-error {
    background: var(--nc-error-bg);
    border-color: var(--nc-error-border);
}

.nc-footer {
    border-top: 1px solid var(--nc-border);
    margin-top: 32px;
    padding-top: 18px;
    text-align: center;
}

.nc-footer p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--nc-muted);
}

.nc-footer a {
    color: inherit;
}

.nc-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .nc-card {
        padding: 22px 18px;
    }

    .nc-brand {
        font-size: 22px;
    }

    .nc-tagline {
        font-size: 14px;
        line-height: 1.6;
    }

    .nc-section h1 {
        font-size: 28px;
    }
}
