* {
    margin: 0;
    padding: 0;
}
*, body {
    box-sizing: border-box;
}

.float-login__aside {
    position: fixed;
    top: 21%;
    left: 1em;
    /* z-index: var(--medium-z-index); */
    z-index: 11;
}

.float-login__button {
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.float-login__span {
    background-color: var(--text-color);
    color: #222;
    font-size: 0.8em;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: -25px;
    right: -25px;
    padding: 5px 7px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
}

.float-login__span:before {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-color);
    position: absolute;
    bottom: -5px;
    left: 40px;
}

#float_login__button:hover .float-login__span {
    bottom: 50px;
    visibility: visible;
    opacity: 1;
}

/* .float-login__button:hover,
.float-login__button:focus {
    
} */

.float-login__image {
    background-color: var(--primary-color);
    border-radius: 50%;
}

.float-login__title {
    font-size: 1.2em;
    text-align: center;
    font-weight: 300;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 0.5em;
}

.float-login__container-form {
    padding: 2em;
    position: absolute;
    /* top: 50%;
    right: 4em; */
    background-color: var(--background-sections-color);
    border-radius: 5px;
    width: 20em;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.float-login__form {
    display: flex;
    flex-flow: wrap column;
    gap: 0.3em;
    height: 15em;
    justify-content: space-evenly;
}

.text-danger {
    font-size: 0.9em;
    color: var(--background-error-color);
    font-weight: 600;
    padding: 0.2em;
}

.float-login__label {
    font-weight: lighter;
    color: var(--text-black-light);
}

.float-login__input {
    border: 1px solid var(--text-gray-light);
    outline: none;
    padding: 0.5em;
    border-radius: 5px;
}

.float-login__submit {
    outline: none;
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 0.6em;
    margin-top: 1em;
    border-radius: 5px;
}

.float-login__submit:hover,
.float-login__submit:focus {
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    padding: 0.6em;
}

.hidden {
    display: none;
}
@media screen and (max-width:790px) {
    .float-login__aside {
        top: 30%;
    }
}