.cntnr-wrap {
    height: 100vh;
    width: inherit;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    /* USE WHEN U ADD TIME LOG */
    /* height: calc(100vh - 60px);
    width: inherit;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: 60px; */
}

.cntnr {
    border: 1px solid black;
    height: 300px;
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.logpnl{
    border: 1px solid black;
    height: 300px;
    width: 500px;
    font-size: 12px;
    resize: none;
    display: none;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.navheader {
    position: fixed;
    height: 40px;
    width: 100vw;
    margin: 0;
    border: 1px solid black;
    top: 0;
    padding: 10px;
}

.headerPanel {
    height: 40px;
    text-align: center;
    padding: 15px;
}

.headerTitle {
    font-size: 1.5em;
    width: 300px;
    vertical-align: middle;
}

.fieldsPanelStyle {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-column-gap: 50px;
    grid-row-gap: 15px; */
    padding: 0 10% 0 10%;
    width: 80%;
}

.fieldsPanel {
    display: flex;
    flex-flow: column;
    margin: 10px 0;
}

input {
    border: 1px solid black;
    height: 35px;
    padding-left: 2%;
}

.fldBtn{
    background-size: 30px;
    margin: 2% 10%;
    height: 40px;
    width: 80%;
	background-position: center;
	background-repeat: no-repeat;
    background-color: #28619d;
    color: #ffffff;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
}

.fldBtn:hover {
    background-color: #1e4772;
}

.homeBtn {
    background-image: url('../images/main.png');
    background-size: 30px 30px;
    background-color: transparent;
    width: 30px;
    height: 30px;
    margin: 0 10px;
    cursor: pointer;
}

#timeDiv {
    line-height: 60px;
    height: 60px;
    font-size: 60px;
    text-align: center;
    width: 40%;
    margin: 0 30% 5% 30%;
    border: 1px solid #28619d;
}

.time-inout-btn {
    margin: 2% 20%;
    width: 60%;
}

#downloadBtn {
    background-image: url(../images/download_small.png);
    background-position: 40px;
    background-size: 25px 25px;
    padding-left: 48px;
}

#signoutBtn {
    background-color: #ad2727;
}

#signoutBtn:hover  {
    background-color: #751b1b;
}

@media screen and (max-width: 550px) {
    .cntnr {
        width: auto;
        height: auto;
        margin-top: 100px;
    }

    #timeDiv {
        width: 40%;
    }

    #downloadBtn {
        background-image: none;
        padding-left: 0;
    }

    .homeBtn {
    	background-size: 30px 30px;
    	width: 30px;
    	height: 30px;
}
}