@media print {
    body {
        background: white;
    }
    
    .header {
        border-bottom: none;
    }
    
    .dontprint {
        display: none;
    }
    
    .onlyprint {
        display: block;
    }
    
    input {
        border: none;
        border-bottom: 2px solid #000000;
    }
}