.container {
    padding: .5rem 0;
}

.register-form {
    display: flex;
    position: relative;
    flex-flow: column wrap;
    margin: 1rem auto;
    width: 22rem !important;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 0 14px #00000014;
    border-radius: 14px;
    gap: 1rem;
    padding-bottom: 2rem;
}

.forgot-password2 {
    display: none;
}

.rules {
    display: flex;
    justify-content: center;
    width: 80%;
    text-align: justify;
    margin: 2.5rem auto;
}

input.error {
    border: 1px solid #eb2026;
}

.errors {
    width: 100%;
    display: flex;
    padding-right: 2.5rem;
    position: relative;
    color: #eb2026;
    user-select: none;
}

.errors.hidden {
    display: none;
}

@media only screen and (max-width: 683px) {
    .rules {
        display: block;
        width: 80%;
        text-align: justify;
        margin: 2.5rem auto;
    }
}

@media only screen and (max-width: 590px) {
    .copyright {
        font-size: 16px;
    }
}

@media only screen and (max-width: 540px) {
    .rules {
        margin: 2.5rem auto;
        font-size: 16px;
    }
}

@media only screen and (max-width: 420px) {
    .register-form {
        width: 85% !important;
    }

    .errors {
        width: 100%;
        display: flex;
        padding-right: 1.5rem;
        position: relative;
        color: #eb2026;
        user-select: none;
    }

    .email-svg,
    .password-svg,
    .username-svg {
        left: 2rem;
        transform: translateY(10px);
    }

    .login-title {
        font-size: 20px;
    }

    input {
        width: 85%;
    }

    .login-btn {
        width: 85%;
    }

    .copyright {
        font-size: 11px;
    }

}