@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/variable/pretendardvariable-dynamic-subset.css');

body {
    background: #151515;
    color: white;

    display: flex;
    justify-content: center;

    margin: 0;
    font-family: 'Pretendard Variable', '맑은 고딕', 'Roboto', 'Helvetica Neue', 'Arial';
    width: 100vw;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 1rem;
    width: 75vw;
    min-width: 20rem;
}

h1 {
    font-size: 2.5rem;
}

.form {
    padding-top: 1.2rem;
    display: flex;
    width: 100%;
    max-width: 60rem;
}

label {
    font-size: 1.25rem;
    font-weight: 600;
    width: 25%;

    line-height: 2.75rem;
}

input {
    width: 75%;
    font-family: 'Pretendard Variable', '맑은 고딕', 'Roboto', 'Helvetica Neue', 'Arial';
    padding: 0.75rem;

    background: #444;
    color: white;
    outline: none;
    height: 1.25rem;
    font-size: 0.8rem;

    border: none;
    letter-spacing: 0.001rem;
    line-spacing: 1.25rem;
}

.button {
    background: #3182f6;
    color: white;
    border: none;
    height: 2.75rem;
    width: 50%;
    max-width: 45rem;

    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;

    transition: 0.1s opacity;

    line-height: 2.75rem;
    text-align: center;

    margin-top: 5rem;
}

.button:hover {
    opacity: 0.75;
}

#token-result {
    border-radius: 0.5rem;
    background-color: #333;
    padding: 1.5rem;
    word-break: break-all;
    font-size: 0.9rem;
}