.content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a1a24;
}

img {
    height: 4rem;
    position: relative;
}

.welcome_div {
    display: flex;
    width: fit-content;
    padding: 4rem;
    padding-top: 3rem;
    gap: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #FFFFFF;
}

.walkthrought {
    width: fit-content;
    display: flex;
    flex-direction: column;

    border-top: 2px solid #E7E7EA;
    padding-top: 2rem;
    gap: 1rem;

}

.welcome_button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1a1a24;
    padding: 1rem 8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    width: 100%;
}

.welcome_button:not(:disabled):hover {
    cursor: pointer;
    background-color: #1a1a24;
    color: #E7E7EA;
}

input {
    min-width: 22rem;
    font-size: 19px;
    font-weight: 100;
    padding: 9px;
    border: 2px solid #e7e7ea;
    background-color: #f6f6fa;
    flex-grow: 1;
    margin-bottom: 1rem;
}

input:active,
input:focus {
    border: 2px solid #f6f6fa;
    outline: none;
    border-bottom: 2px solid #c4c4cd;
}

input[type="password"] {
    -webkit-text-security: circle;
}

#check {
    margin-bottom: 0;
}

.message {
    color: red;
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.message_hidden {
    visibility: hidden;
}