.mask {
    display: flex;
    justify-content: center;
}

.wrapper {
    width: 30rem;
    background: transparent;
    color: white;
    padding: 30px 40px;
    margin-top: 10%;
    border: 2px solid white;
    backdrop-filter: blur(100px);
}

.wrapper h1 {
    font-size: 36px;
    text-align: center;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

.wrapper .input-box {
    width: 100%;
    height: 50px;
    background: transparent;
    margin: 30px 0;
}

.input-box input {
    width: 98%;
    height: 100%;
    background: transparent;
    border: solid white;
    outline: none;
    border-radius: 20px;
    font-size: 16px;
    color: var(--secondary-color);
}

.input-box input::placeholder {
    color: gray;
}

.wrapper .btn {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    width: 100%;
    height: 45px;
    background: white;
    border: none;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    color: black;
    font-weight: 700;
}

.login-link {
    color: var(--secondary-color);
}

.login-link:visited {
    color: var(--secondary-color);
}

.already-member {
    color: var(--secondary-color);
    font-size: 18px;
}

@media screen and (max-width: 990px) {
    .wrapper {
        padding: 4rem;
    }
}

@media screen and (max-width: 650px) {
    .wrapper {
        padding: 0 1rem;
        border: none;
        backdrop-filter: blur(0);
    }
}