.link-a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    text-align: left;
    font-size: 0.9em;
    width: fit-content;
    transition: 0.5s ease-in-out;
}

.link-a:hover {
    color: var(--green-color);
    transition: 0.5s ease-in-out;
}

.container-left-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: var(--height-100vh);
}

.logotipo {
    width: 70%;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 20px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.container-wrapper {
    display: flex;
}

.container-left {
    background-color: var(--dark-bg);
    width: var(--width-50);
    height: var(--height-100vh);
}

.container-right {
    background-color: var(--white-bg);
    width: var(--width-50);
    height: var(--height-100vh);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#form-login {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#form-login p {
    text-align: left;
}

#form-login input {
    border: none;
    border-bottom: 2px solid #333333;
}


#form-login input:focus {
    outline: 0;
}

.container-item {
    display: flex;
    flex-direction: column;
    width: 40%;
    gap: 30px;
}

.lnr-eye {
    position: absolute;
    top: 50%;
    left: 83.5%;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.lnr-eye:hover {
    color: var(--green-color);
    transition: 0.5s ease-in-out;
}

.btn.btn-dark.btn-meu {
    background-color: var(--dark-bg);
    color: var(--text-light);
    border: 1px solid var(--dark-bg);
    border-radius: 3px;
    display: inline-block;
    letter-spacing: -1;
    user-select: none;
    font-weight: 700;
    z-index: 0;
}

.btn.btn-dark.btn-meu:hover {
    /* background-color: #48e223;
    color: black; */
    position: relative;
    border: 1px solid var(--green-color);
    color: var(--text-light);
    background-color: var(--dark-bg);
}

.btn.btn-dark.btn-meu:hover::before {
    content: '';
    background-color: #48e223;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    animation: bgCollorButton 2s ease-in-out;
}

@keyframes bgCollorButton {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}