* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'IBM Plex Mono', monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --cor_fundo: #000000;
    --cor_secundaria: #FFFFFF;
    --cor_terciaria: #888484;
    --cor_quartenaria: #D9D9D9; 
}

body {
    background: url(../img/RESERPLASTIC-WALLPAPER-01\ \(1\).jpg), lightgray 50%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#login-wrapper {
    width: 437px;
    height: 800px;
    flex-shrink: 0;
    border-radius: 20px;
    background: rgba(217, 217, 217, 0.30);
}

#titulo {
    display: flex;
    height: 54px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #FFFFFF;
    text-align: center;
    font-family: IBM Plex Mono, serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#social {
    display: flex;
    flex-direction: row;
    padding-left: 117px;
    gap: 53px;
    width: 32px;
    height: 32px;
    margin-top: 40px;
}

#input-login {
    margin-left: 20px;
    width: 310px;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    border: none;
    font-weight: bold;
    padding-left: 40px;
    font-size: 15px;
    color: #fff;
}

#input-password {
    margin-left: 20px;
    width: 310px;
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    border: none;
    font-weight: bold;
    padding-left: 40px;
    font-size: 15px;
    color: #fff;
}

#input-login:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: transparent;
    font-weight: bold;
    padding-left: 40px;
    font-size: 15px;
    color: #fff;
    outline: none;
}

#input-password:focus {
    background-color: transparent;
    box-shadow: none;
    border-color: transparent;
    font-weight: bold;
    padding-left: 40px;
    font-size: 15px;
    color: #fff;
    outline: none;
}

#login {
    display: flex;
    width: 66px;
    height: 35px;
    padding: 19px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #FFF;
    font-family: IBM Plex Mono, serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 49px;
}

#mailbox {
    display: flex;
    flex-direction: row;
    width: 25px;
    height: 25px;
    justify-content: center;
    margin-left: 19px;
    margin-top: -20px;
}

#chave {
    display: flex;
    flex-direction: row;
    width: 25px;
    height: 25px;
    justify-content: center;
    margin-left: 19px;
    margin-top: -20px;
}

#password {
    display: inline-block;
    width: 98px;
    height: 35px;
    padding: 19px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #FFF;
    font-family: IBM Plex Mono, serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 150px;
}

#botao-senha {
    margin-left: 19px;
    color: #fff;
    font-weight: lighter;
}

.botao-login {
    text-align: center;
}

#botao {
    width: 353px;
    height: 41px;
    text-align: center;
    border-radius: 12px;
    background: #888484;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-top: 115px;
    font-weight: bold;
}


/* ///////////////////////////////////////////////////////////// */
/* /////////////////// MEDIA QUERY ///////////////////////////// */


@media screen and (max-width:1440px){
    #login-wrapper{
        height:97vh;
    }
}

@media screen and (max-width:600px){
    #login-wrapper{
        width: 80%;
        height:90vh;
    }
    svg{
        width: 95%;
    }
    #social{
        width: 100%;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    #botao {
        width: 90%;
        margin-top: 50px;
    }
}

@media screen and (max-width:480px){

    #login-wrapper{
        width: 80%;
        height: 85vh;
    }
    #titulo{
        font-size: 30px;
    }
    #campos{
        height: 400px;
    }
    #mailbox {
        width: 20px;
    }
    #login{
        font-size: 15px;
    }
    #password{
        font-size: 15px;
        margin-top: 40px;
    }
    svg{
        width: 90%;
    }
    #botao {
        width: 90%;
        margin-top: 50px;
    }
    .botao-login{
        margin-top: 0;
    }
    #botao-senha label{
        font-size: 13px;
    }
    span a{
        font-size: 13px;
    }
}

@media screen and (max-width:400px){
    #password{
        font-size: 15px;
        margin-top: 10px;
    }
    #botao {
        width: 90%;
        margin-top: 40px;
    }

}

@media screen and (max-width:350px){
    body {
        background-size: 300% ;
        background-repeat: no-repeat;
    }
    #titulo{
        font-size: 25px;
    }
    #social{
        margin-top: 0px;
    }
    #login{
        margin-top: 0px;
    }
    #password{
        margin-top: 0px;
    }

}