* {
    margin: 0;
    padding: 0;

    color: #000;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
	user-select: none;
	
	box-sizing: border-box;
}
body {
    width: 100%;
    height: 100%;
    
    font-family: 'Montserrat', sans-serif;
    
    overflow-y: scroll;
    
    display: flex;
    flex-wrap: wrap;
}

a, button, #passwordIcon {
    cursor: pointer;
    -webkit-user-drag: none;
    user-select: none;
}
img {
    -webkit-user-drag: none;
    user-select: none;
}
#app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 30px #f7f7f7 inset !important;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 30px #f7f7f7 inset !important;
}
input:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px f7f7f7 inset;
    box-shadow: 0 0 0px 1000px f7f7f7 inset;
    color: #000; /* Altere para a cor que deseja para o texto */
}
button {
    outline: none;
    border: none;
}
input[type="checkbox"] {
    cursor: pointer;
}