.login-dark {
  height:100vh;
  background:#475d62 url(../img/login-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
  position:relative;
}

.login-dark form {
  max-width:320px;
  width:90%;
  background-color:#1e2833;
  padding:40px;
  border-radius:4px;
  transform:translate(-50%, -50%);
  position:absolute;
  top:50%;
  left:50%;
  color:#fff;
  box-shadow:3px 3px 4px rgba(0,0,0,0.2);
}

.login-dark .illustration {
  text-align:center;
  padding:15px 0 20px;
  font-size:100px;
  color:#f7c637;
}

.login-dark form .form-control {
  background:none;
  border:none;
  border-bottom:1px solid #434a52;
  border-radius:0;
  box-shadow:none;
  outline:none;
  color:inherit;
}

.login-dark form .btn-warning {
  background:#f7c637;
  border:none;
  border-radius:4px;
  padding:11px;
  box-shadow:none;
  margin-top:26px;
  text-shadow:none;
  outline:none;
}

.login-dark form .btn-warning:hover, .login-dark form .btn-warning:active {
  background:#caa612;
  outline:none;
}

.login-dark form .forgot {
  display:block;
  text-align:center;
  font-size:12px;
  color:#6f7a85;
  opacity:0.9;
  text-decoration:none;
}

.login-dark form .forgot:hover, .login-dark form .forgot:active {
  opacity:1;
  text-decoration:none;
}

.login-dark form .btn-warning:active {
  transform:translateY(1px);
}

.signup-bg {
  height:100vh;
  background:#FFFFFF url(../img/signup-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
  position:relative;
}

#cent {
  position:absolute;
  top:30%;
  left:50%;
  margin-top:-50px; /* this is half the height of your div*/  
  margin-left:-100px; /*this is half of width of your div*/
}

.success {
  color: green;
}

.fail {
  color: red;
}

#table-header {
  text-align: center;
}

#draft-table {
  padding: 10px;
  max-height: 100vh;
  overflow: auto;
  display:inline-block;
}

#complete-table {
  padding: 10px;
  max-height: 100vh;
  overflow: auto;
  display:inline-block;
}

#table-filter {
	padding: 10px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  grid-gap: 1em;
  padding: 20px;
}

#date-filter{
  grid-column: 1/3;
}

table {
	font-size: 12px;
}

.draft-bg {
  height: 130vh;
  background:#FFFFFF url(../img/list-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
  position:relative;
}

.user-table {
  margin-left: auto;
  margin-right: auto;
  background:#FFFFFF;
}

.wrap-td {    
  width:360px;  /* adjust to desired wrapping */
  display:table;
  white-space: pre-wrap; /* css-3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}