body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    color: white;
    min-height: 100% !important;
    height: 100%;
    cursor: none;
    font-family: Arial, Helvetica, sans-serif;
}

div {
    background-color: white;
    color: black;
    box-sizing: border-box;
    cursor: auto;
}

#inputs {
    display: table-cell;
    height: 100vh;
    width: 100vw;
    text-align: center;
    vertical-align: middle;
}

#inputs input {
    padding: 10px;
    border-radius: 5px;
    outline: none;
}

.slideimg {
    min-height: 100% !important;
    height: 100%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
    opacity:0;
    display: block;
}

#Logo {
    height: 20vh;
}

.submit {
    cursor: pointer;
    transition: 200ms;
    outline: none;
    border: 1px solid black;
}

.submit:hover, .submit:active {
    background-color: #00470f;
    color: white;
    cursor: pointer;
}

