#activate {
    padding: 0 20px 40px 20px;
}

#activate .title {
    display: flex;
    align-items: center;
    margin-bottom: 2em;
}

#activate .titleImage {
    text-align: center;

}

#activate .titleImage img {
    width: 4em;
}

#activate button {
    margin-top: 1em;
    width: 100%;
    font-size: 2.2em;
    padding: 10px 10px;
    background-color: #25736c;
    color: #fff;
    border: 0;
}

#activate input {
    width: 100%;
    font-size: 32px;
    padding: 5px 10px;
    text-align: center;
}

#activate h2 {
    font-size: 1.8em;
    padding: 0 0 0 0.5em;
    margin: 0;
}

#activate h3 {
    margin-bottom: 0;
}

#errorMessage {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    display: flex; /* Flexboxを使用 */
    justify-content: center; /* 水平方向中央揃え */
    align-items: center; /* 垂直方向中央揃え */
    flex-direction: column;
}

#errorMessage p {
    padding: 0 2em;
    margin: 0;
}

#errorMessage button {
    background-color: #555555;
    font-size: 1.2em;
    padding: 1em 2em;
    color: #fff;
    border: 0;
    width: calc(100% - 4em);
}