.bg-image {
    background-image: url('../img/blue-mountain-bg.png');
    /* background-image: url('/storage/app/public/idea-img.png'); */
    background-size: cover;
    background-position: center;
}

.login {
    min-height: 100vh;
}

.login-heading {
    font-weight: 300;
}

#section-1{
    display: flex;
    width: 90vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

#section-2 {
    display: flex;
    width: 90vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100vw;
    overflow: hidden;
}

#section-1, #section-2 {
    transition: 1s;
}

#toggle1:checked~#section-1 {
    transition: 1s;
    left: -100vw;
}

#toggle1:checked~#section-2 .info-container, #toggle1:checked~#section-2 {
    transition: 1s;
    left: 0;
}

#toggle2:checked~#section-2 {
    transition: left 1s;
    left: -100vw;
}

#toggle2:checked~#section-1, #toggle2:checked~#section-2 .info-container {
    transition: 1s;
    left: 0;
}

.link-hover{
    color: rgba(var(--tblr-link-color-rgb), var(--tblr-link-opacity, 1))
}

.link-hover:hover {
    cursor: pointer;
    text-decoration: underline;
}
