/* // A rule for this website */
.input-holder.wrong::after {
    display: none;
}

body{
    --background:rgba(var(--rgb-primary), .06);
    background: var(--background);
}

main{
    display: grid;
    grid-template:1fr / 1fr 1fr;
    height: 100%;
}

main .left{
    display: flex;
    height: 100%;
}

.info-colector{
    position: relative;
    margin: auto;
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.login-error{
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    background: rgba(var(--rgb-secondary), .2);
    padding: 20px;
    border-radius: 6px;
    color: var(--secondary);
    font-size: .9em;
    display: none;
}

.login-error.show{
    display: flex;
    animation: fadeIn .5s ease-in-out;
}

.login-error.show + a{
    opacity: 0;
}

.login-error .ico-holder{
    margin-right: 10px;
    display: flex;
}

.login-error .ico-holder i{
    margin: auto;
}

.back{
    background: var(--background);
    display: flex;
    width: 50px;
    height: 40px;
    transition: 300ms;
    opacity: 1;
}

.back:hover{
    background: var(--primary);
    color: var(--body-color);
}

.back i{
    margin: auto;
    transition: 300ms transform;
}

.back:hover i{
    transform: translateX(-5px);
}

.info-colector h1{
  font-size: 1.8em;
  font-weight: 600;
  font-family: var(--lora);
}


.info-colector form label{
    display: block;
    font-size: 1em;
    margin: 8px 0;
}

.info-colector .password-holder {
    position: relative;
    /* overflow: hidden; */
    border-radius: 6px;
}

.info-colector .password-holder .show-password{
    cursor: pointer;
    position: absolute;
    right: 0;
    height: 100%;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.info-colector .password-holder .show-password i{
    margin: auto;
    opacity: .4;
    transition: 300ms;
    pointer-events: none;

}

.info-colector .password-holder .show-password:hover i{
    opacity: .7;
}

.info-colector .password-holder .show-password:active i{
    opacity: 1;
}

.submit-btn{
    border: none;
    border-radius: 6px;
    width: 100%;
    height: 48px;
    padding: 0px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    color: var(--body-color);
    appearance: none;
    background-color: var(--primary);
    margin-top: 30px;
    border: 2px solid transparent;
    outline: none;
    transition: 300ms;
}

.submit-btn:hover{
    background: var(--body-color);
    border: 2px solid var(--primary);
    color: var(--primary);
}

.password-reset{
    text-decoration: underline;
    font-size: .8em;
    display: block;
    margin-top: 14px;
}

.or{
    text-align: center;
    font-size: .8em;
    margin: 32px 0;
}

.register-with-button{
    border: none;
}

.create-account{
    margin-top: 14px;
}

.create-account span{
    font-size: .8em;
}

.create-account a{
    text-decoration: underline;
    font-size: .8em;
}

.anonymous-view{
    border: 2px dashed;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    width: 100%;
    height: 48px;
    padding: 0px;
    font-size: 1em;
    font-weight: 600;
    margin-top: 30px;
    transition: 300ms;
}

.anonymous-view i{
    margin-right: 10px;
}

.anonymous-view:hover{
    background: rgba(var(--rgb-primary), .06);
}

.anonymous-view:active{
   transform: scale(.98);
}

main .right{
   position: relative;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   overflow: hidden;
   display: flex;
}

main .right .books-holder{
    margin: auto;
    position: relative;
    width: 1000px;
    height: 1000px;
}

.right .book{
    position: absolute;
    border: 2px solid var(--primary);
    z-index: 1;
    animation: fadeIn 1s linear;
             
}

.right .book::after,
.right .book::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.right .book::after{
    bottom: -10px;
    right: -10px;
    border: 2px solid var(--primary);
    background: var(--surface-3);
}

 .right .book::before{
    bottom: -20px;
    right: -20px;
    border: 2px solid var(--primary);
} 

.right .book:nth-child(1){
    font-size: 1.2rem;
    top: 100px;
    left: 30px;
}

.right .book:nth-child(2){
    font-size: 1.6rem;
    top: -80px; 
    left: 280px;
    
 }

 .right .book:nth-child(3){
    font-size: 1.7rem;
    top: 188px;
    left: 590px;
  
 }

 .right .book:nth-child(4){
    font-size: 1.8rem;
    top: 450px;
    left: 30px;
  
 }

 .right .book:nth-child(5){
    font-size: 1rem;
    top: 350px;
    left: 382px;
    
 }

 .right .book:nth-child(6){
    font-size: 1.7rem;
    top: 650px;
    left: 372px;
    
 }

 .right .book img{
     background: rgba(var(--rgb-primary), .06);
     width: 10em;
 }


 @media screen and (max-width: 800px) {
    main{
        display: block;
    }

    main .right{
        display: none;
    }
    .info-colector{
        padding: 30px 25px;
    }
 }

