body {
    height: 100vh;
    padding: 0;
    margin: 0;
}
#box {
    /* background-image: url(login-register.jpg); */
    background-color: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    width: 100%;
    text-align: center;
}
#captchahere {
    margin: 0 auto;
    width: 305px;
    padding-top: 60px;
}
h1.info {        
    width: 80%;
    margin: 0 auto;
    padding-top: 25px;
    margin-top: 0;
}
h1.info #print {
    float: right;
    cursor: pointer;
}
.info.footer {
    margin-top: 5px;
    margin-bottom: 0;
}
.info {
    font-family: sans-serif;
    color: #fff;
}
#ticket {
    background-color: #fff;
    border: 5px solid black;
    padding: 10px;
    margin: 0 auto;
    width: 95%;
    height: 95%;
    overflow: auto;
}
@media print {
    body * {
        visibility: hidden;
        height: auto;
    }
    #ticket, #ticket * {
        visibility: visible;
    }
    #ticket {
        left: 0;
        top: 0;
        border: none;
        padding: 2px;
        width: auto;
        height: auto;
        overflow: initial;
    }
    .page {
        page-break-after: always
    }
    .info {
        display: none;
    }
}
