.login {
    background: #F7F7F7
}
a.hiddenanchor {
    display: none
}
.login_wrapper {
    right: 0px;
    margin: 0px auto;
    margin-top: 5%;
    max-width: 350px;
    position: relative
}
.registration_form,
.login_form,
.reset_form {
    position: absolute;
    top: 0px;
    width: 100%
}
.registration_form {
    z-index: 21;
    opacity: 0;
    width: 100%
}
.login_form {
    z-index: 22;
}
.reset_form{
    z-index: 20;
    opacity: 0;
    width: 100%;
}
#signup:target ~ .login_wrapper .registration_form,
#signin:target ~ .login_wrapper .login_form,
#reset-pwd:target ~ .login_wrapper .reset_form {
    z-index: 22;
    animation-name: fadeInLeft;
    animation-delay: .1s
}
#signup:target ~ .login_wrapper .login_form,
#signin:target ~ .login_wrapper .registration_form,
#reset-pwd:target ~ .login_wrapper .reset_form {
    animation-name: fadeOutLeft
}

#username {
    background-position: 10px 10px !important
}
#password {
    background-position: 10px -53px !important
}
.login_content form div a {
    font-size: 12px;
    margin: 10px 15px 0 0
}
.reset_pass {
    margin-top: 10px !important
}
.login_content div .reset_pass {
    margin-top: 13px !important;
    margin-right: 39px;
    float: right
}

.login_content {
    margin: 0 auto;
    position: relative;
    text-align: center;
    min-width: 280px
}

.login_content a,
.login_content .btn-secondary:hover {
    text-decoration: none;
}

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

.login_content h1 {
    font-size: 25px;
    letter-spacing: -0.05em;
    line-height: 20px;
    margin: 10px 0 30px
}

.login_content h1:before,
.login_content h1:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 27%
}

.login_content h1:after {
    background: #7e7e7e;
    right: 0
}

.login_content h1:before {
    background: #7e7e7e;
    left: 0
}

.login_content h1:before,
.login_content h1:after {
    content: "";
    height: 1px;
    position: absolute;
    top: 10px;
    width: 15%
}

.login_content form {
    margin: 20px 0;
    position: relative
}

.login_content form input[type="text"],
.login_content form input[type="email"],
.login_content form input[type="password"],
.login_content form select {
    border-radius: 3px;
    border: 1px solid #c8c8c8;
    color: #777;
    margin: 0 0 20px;
    width: 100%;
}

.login_content form input[type="text"]:focus,
.login_content form input[type="email"]:focus,
.login_content form input[type="password"]:focus,
.login_content form select:focus {
    background-color: var(--color-pop);
    border: 1px solid var(--color-primary);
    outline: none;
}

.tooltip-errors ul {
    list-style: none;
    padding-left: 5px;
    margin: 0;
}

.tooltip-errors {
    text-align: start;
    border-radius: 10px;
    padding: 10px;
    width: 250px;
    position: absolute;
    top: 17px;
    background-color: rgba(255, 0, 0, 0.2);
    color: rgb(159, 40, 67);
    display: none;
    z-index: 1;
    bottom: 100%;
    left: 100%;
    height: fit-content;
    margin-left: 15px;
    transform: translateY(-50%);
}

.tooltip-errors-arrow {
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(255, 0, 0, 0.2);
}

#password:focus + .tooltip-errors,
#confirm_password:focus + .tooltip-errors,
#email:focus + .tooltip-errors {
    display: block;
}

.login-title {
    display: flex;
    flex-direction: column;
    text-align: start;
}

.login-link {
    text-align: start;
    margin-top: 20px;
    text-decoration: underline;
}

.login-powered-by {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.login-powered-by img {
    width: 25%;
}

.login-secondary-title {
    margin: 20px 0 0 0;
}