* {
    padding: 0;
    margin: 0;
    outline: none;
    text-decoration: none;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
    touch-action: manipulation;
    color: currentColor;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--cor-a1);
    font-family: var(--f-family-1);
    font-size: var(--f-size-l);
    font-weight: bold;
    color: var(--cor-b1);
    width: 80%;
    height: 50px;
    border-radius: 36px;
}
.btn-login:active{
    transform: scale(0.9);
    box-shadow: inset 1px 1px 100px rgba(0,0,0,0.2);
    text-shadow: 0 0 3px rgba(255,255,255,0.8);
}
.btn-login i{
    display: flex;
}

.iniciar{ 
    position: fixed;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 35%;
    width: 100%;
    height: 100%;
    background-color: var(--cor-a2);
    padding: 50px 15px;
    box-sizing: border-box;
}
.iniciar img{
    width: 70%;
    height: 130px;
}

.login{
    /* background: linear-gradient(180deg, var(--cor-a1) 0%, var(--cor-a2) 100%); */
    width: 100vw;
    height: 100vh;
    padding: 0 15px;
    box-sizing: border-box;
}
.login form{
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.welcome{
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: var(--f-size-m);
    color: var(--cor-b1);
}
.welcome h1{
    font-size: var(--f-size-xl);
}

.inputs-login{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 80%;
}
.inputs-login .input{
    color: var(--cor-c1);
    position: relative;
    width: 100%;
    padding: 4px 8px;
    box-sizing: border-box;
    background-color: var(--cor-b1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}
.inputs-login .input i{
    display: flex;
    font-size: var(--f-size-l);
}

.ocultar-senha{
    position: absolute;
    right: 8px;
}

.inputs-login .input input{
    font-family: var(--f-family-1);
    font-size: var(--f-size-m);
    width: 250px;
    height: 40px;
}

.inputs-login label{
    width: 100%;
    color: var(--cor-b1);
    font-size: var(--f-size-m);
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}