html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: none;
}

input:focus {
    outline: none;
}

input:invalid {
    border: 2px solid red;
}

/* Watermark */
.watermark {
    z-index: 9999;
    position: absolute;
    color: rgba(105, 105, 105, 1);
    font-size: 20px;
    top: 80%;
    right: 0%;
}

/* Bootstrap tab compat */
.tab-pane {
    min-height: 70vh;
}

.nav-link {
    color: white;
}

/* Tab active underline */
.nav-tabs .nav-link.active {
    border-bottom: 2px solid #6366f1;
    color: white !important;
}
