:root {
    --fc-brand: #0B3D91;
    --fc-text: #222;
    --fc-muted: #666;
    --fc-line: #dcdcdc;
    --fc-btn: #0B3D91;;
    --fc-btn-text: #1e1e1e;
    --fc-radius: 14px;
    --fc-field-h: 54px;
    --fc-max-w: 560px;
}

* {
    box-sizing: border-box;
}

body {

    margin: 0;
    font-family: "Noto Sans KR", sans-serif;
    background: #fff;
    color: var(--fc-text);
}

.fc-wrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 16px;
    margin-top: 30px;
}

.fc-card {
    width: 100%;
    max-width: var(--fc-max-w);
}

.fc-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.fc-logo img {
    width: min(240px, 60vw);
    height: auto;
}

.fc-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-input {
    height: var(--fc-field-h);
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 16px;
}

.fc-input:focus {
    border-color: #9a9a9a;
    outline: none;
}

.fc-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--fc-muted);
}

.fc-btn {
    height: 56px;
    border: 1px solid #0B3D91;
    background: #0B3D91;
    font-size: 22px;
    letter-spacing: 2px;
    border-radius: var(--fc-radius);
    cursor: pointer;
    color: #fff;
}

.fc-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 12px 0 24px;
    font-size: 14px;
    color: var(--fc-muted);
}

.fc-links a {
    text-decoration: none;
    color: inherit;
}


@media (max-width: 480px) {
    .fc-btn {
        font-size: 20px;
    }
}