.wrapper {
    height: 100%;
    width: 100%;
    max-width: 1980px;
    max-height: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

img {
    width: 150px;
    position: absolute;
    top: 20px;
    object-fit: contain;
}

.backBtn {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: transparent;
    z-index: 100;
}

.content_wrapper {
    height: 240px;
    width: 450px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 40px 50px 0.5fr 0.5fr;
}

.grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid:nth-child(2) {
    flex-direction: column;
    text-align: center;
}

.grid:nth-child(2) a {
    color: var(--bg-tertiary);
    text-decoration: none;
    font-weight: var(--bold);
}

.grid:nth-child(2) h5 {
    font-weight: var(--normal);
}

input {
    height: 60px;
    width: 100%;
    border: solid 1px var(--bg-tertiary);
    border-radius: 10px;
}

.grid:last-child button {
    height: 60px;
    width: 100%;
    background-color: var(--bg-tertiary);
    border: none;
    color: var(--text-color);
    border-radius: 10px;
}

@media screen and (max-width: 499px) {
    .wrapper {
        width: 90%;
    }
}
