@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500&family=Noto+Sans+JP&display=swap');

.background {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(232, 219, 214);
}

.logo {
    color: #171881;
    font-family: 'EB Garamond', Garamond, Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    user-select: none;
    height: 29px;
    margin-bottom: 24px;
    padding-left: 6px;
}

.logo span {
    display: inline-block;
}

.logo span:not(:last-of-type)::first-letter {
    font-size: 22px;
}

.logo span:last-of-type {
    color: rgba(23, 24, 129, .4);
    font-size: 21px;
}

.content {
    display: flex;
    flex-direction: column;
    width: 450px;
    height: 400px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
}

.input {
    margin: 12px 0;
}

.submit {
    text-align: right;
}

.message {
    margin-top: 24px;
}

.message.error {
    color: #f00;
}

input[type=submit] {
    border-radius: 100vh;
    padding: .375rem 1.5rem;
}

footer {
    flex-grow: 1;
    display: flex;
    flex-direction: column-reverse;
}
