body{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 64px;
    background: black;
    background: linear-gradient(180deg, black 0%, var(--veige) 100%);
    overflow: hidden;
    color: #fff;
}

.impLogin{
    border: 0;
    width: 40%;
    background: none;
    padding-bottom: 12px;
    border-bottom: 2px solid #fff;
    color: #fff;
    outline: unset;
}

.impLogin::placeholder{
    color: darkgray;
}

.loginBtn{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background-color: black;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    p{
        margin-inline: 12px;
    }
}

.loginBtn:hover{
    background-color: #fff;
    color: black;
    cursor: pointer;
}

.flechita{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 30px;
    color: black;
    background-color: ghostwhite;
}

.loginBtn:hover .flechita i{
    transition: all 0.3s ease-in-out;
    color: #fff;
    transform: translateX(12px);
}

.lolForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    width: 90%;
}

#digitInputs{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.impDigit{
    height: 50px;
    width: 50px;
    color: #fff;
    background-color: var(--negro);
    border: none;
    border-radius: 5px;
    text-indent: 20px;
    font-size: 20px;
}

.impDigit::-webkit-outer-spin-button,
.impDigit::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.impDigit {
    appearance: textfield;
}

@media(max-width:1080px){
    .impLogin{
        width: 80%;
    }
}