@font-face {
    font-family: "Pretendard";
    src: url("/assets/fonts/PretendardVariable.woff2") format("woff2-variations");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --green-950: #102319;
    --green-900: #173322;
    --green-800: #2f4d33;
    --green-700: #2c5d3d;
    --green-100: #e8efe9;
    --paper: #f7f7f3;
    --white: #ffffff;
    --ink: #111612;
    --muted: #68716b;
    --line: #d9ddd9;
    --line-dark: #bdc5bf;
    --danger: #b53c3c;
    --success: #236f42;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-width: 1200px;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Pretendard", sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    height: 94px;
    background: var(--green-800);
    color: var(--white);
    border-bottom: 6px solid var(--green-800);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1100px;
    height: 88px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.brand-kicker {
    color: #aebcaf;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.brand strong {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.035em;
}

.account-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #d6ddd7;
    font-size: 13px;
    font-weight: 500;
}

.account-nav span {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.28);
}

.account-nav a:hover,
.account-nav a[aria-current="page"] {
    color: var(--white);
}

.register-page {
    width: 900px;
    margin: 0 auto;
    padding: 76px 0 100px;
}

.register-intro {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--green-950);
}

.section-label {
    margin: 0 0 11px;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.register-intro h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.register-intro > p:last-child {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.register-panel {
    margin-top: 38px;
    padding: 12px 40px 44px;
    background: var(--white);
    border-top: 5px solid var(--green-800);
    box-shadow: 0 12px 34px rgba(16, 35, 25, 0.07);
}

.form-alert {
    margin: 24px 0 4px;
    padding: 17px 20px;
    background: #fff5f4;
    border-left: 3px solid var(--danger);
    color: #6e2828;
    font-size: 14px;
    line-height: 1.6;
}

.form-alert strong {
    display: block;
    margin-bottom: 4px;
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    min-height: 128px;
    padding: 30px 0 25px;
    border-bottom: 1px solid var(--line);
}

.form-row > label,
.field-label {
    padding-top: 16px;
    font-size: 15px;
    font-weight: 700;
}

.form-row em {
    margin-left: 5px;
    color: var(--green-700);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    vertical-align: 2px;
}

.field-body input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    background: var(--white);
    color: var(--ink);
    font-size: 15px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-body input::placeholder {
    color: #9ca39e;
}

.field-body input:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(44, 93, 61, 0.12);
}

.field-with-button {
    display: grid;
    grid-template-columns: 1fr 126px;
}

.field-with-button input {
    border-right: 0;
}

.check-button {
    border: 0;
    border-radius: 0 2px 2px 0;
    background: var(--green-800);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease;
}

.check-button:hover {
    background: var(--green-700);
}

.check-button:disabled {
    background: #89968d;
    cursor: wait;
}

.field-message {
    min-height: 18px;
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.field-message.is-success {
    color: var(--success);
    font-weight: 650;
}

.field-message.is-error {
    color: var(--danger);
    font-weight: 650;
}

.security-row {
    align-items: center;
    min-height: 118px;
}

.security-row .field-label {
    padding-top: 0;
}

.form-actions {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 10px;
    margin-top: 38px;
}

.cancel-button,
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border: 1px solid var(--green-900);
    border-radius: 2px;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
}

.cancel-button {
    background: var(--white);
    color: var(--green-900);
}

.submit-button {
    background: var(--green-900);
    color: var(--white);
}

.submit-button:hover {
    background: var(--green-700);
}

.login-guide {
    margin: 24px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

.login-guide a {
    margin-left: 7px;
    color: var(--green-800);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.result-page {
    display: flex;
    justify-content: center;
    width: 1200px;
    margin: 0 auto;
    padding: 112px 0;
}

.result-card {
    width: 720px;
    padding: 70px 60px;
    background: var(--white);
    border-top: 5px solid var(--green-800);
    text-align: center;
    box-shadow: 0 12px 34px rgba(16, 35, 25, 0.07);
}

.result-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 27px;
    font-weight: 800;
}

.result-mark.is-error {
    background: #fff1f0;
    color: var(--danger);
}

.result-card h1 {
    margin: 0;
    font-size: 30px;
    letter-spacing: -0.04em;
}

.result-card > p:not(.section-label) {
    margin: 18px 0 32px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.result-link {
    width: 230px;
    margin: 0 auto;
}
body{font-size:18px}.register-logo{display:block;width:210px;height:auto;max-height:50px;object-fit:contain;object-position:left center}.account-nav{font-size:15px}.register-intro>p:last-child{font-size:18px}.form-row>label,.field-label{font-size:18px}.field-body input{font-size:17px}.check-button{font-size:17px}.field-message{font-size:14px}.cancel-button,.submit-button{font-size:18px}.login-guide{font-size:16px}.result-card h1{font-size:34px}.result-card>p:not(.section-label){font-size:18px;line-height:1.65}
