body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth {
    width: 35%;
    padding: 15px 35px;
    border: var(--color-text) 2px solid;
    border-radius: 4px;
}

.register {

}

.register__title {
    margin-bottom: 25px;
}

.register__input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.register__label {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.register__input {
    font-size: 20px;
    background: var(--color-background);
    border: 0;
    border-bottom: 2px var(--color-text) solid;
    padding-bottom: 2px;
    color: var(--color-text);
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.register__input::placeholder {
    color: var(--color-text);
    opacity: 0.75;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

.register__input:focus {
    outline: 0;
}

.register__button {
    user-select: none;
    display: inline-block;

    padding: 10px;
    border-radius: 20px;
    border: var(--color-text) 2px solid;

    color: var(--color-text);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-right: 15px;

    transition: 0.25s;
}

.register__button:hover {
    color: var(--color-background);
    background: var(--color-text);
}

.register__button__container {
    display: flex;
    align-items: center;
}

.register__login {
    font-weight: 700;
    user-select: none;
    cursor: pointer;
}

.register__login:hover {
    border-bottom: 2px solid
}

.auth__legal {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--color-text);
}

.auth__legal a {
    color: var(--color-text-other);
    font-weight: 700;
    text-decoration: none;
}

.auth__legal a:hover {
    text-decoration: underline;
}

.auth__forgot {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
}

.auth__forgot:hover {
    text-decoration: underline;
}

.auth__hint {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.45;
}

.auth__hint span {
    color: var(--color-text-other);
    font-weight: 700;
}

.password__match {
    color: var(--color-error);
    margin-bottom: 25px;
    font-weight: 700;
}

.confirm__title {
    font-size: 28px;

    margin-bottom: 16px;
}

.email {
    font-weight: 500;
    font-size: 20px;

    color: var(--color-text-other);

    margin-bottom: 16px;
}

.confirm__desc {
    font-size: 22px;

    margin-bottom: 16px;
}

.desc {
    font-size: 18px;
}

@media (max-width: 768px) {
    body {
        min-height: 100vh;
        height: auto;
        padding: 16px;
        align-items: flex-start;
    }

    .auth {
        width: 100%;
        padding: 16px;
    }

    .register__button__container {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .register__button {
        margin-right: 0;
        text-align: center;
    }

    .confirm__title {
        font-size: 24px;
    }

    .confirm__desc {
        font-size: 18px;
    }

    .email {
        overflow-wrap: anywhere;
    }
}
