.cd-wrap { max-width: 100%; }

.cd-login {
  background: #fff;
  max-width: 500px;
  width: 100%;
}

.cd-forgot-password {
	margin: 2rem 0 0 0;
	padding: 2rem 0 0 0;
	border-top: 1px solid #ececec;
}

.cd-login h3 { margin: 0 0 1rem 0; font-size: 20px; }

.cd-login label {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6px;
}
.cd-login input:focus {
	outline: none;
}
.cd-login input[type="text"],
.cd-login input[type="password"] {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ececec;
  border-radius: 0.5rem;
  box-sizing: border-box;
}

.cd-login .login-remember { margin-top: 10px; }

.cd-login input[type="submit"] {
  cursor: pointer;
}

.cd-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 0;
  overflow: hidden;
}

.cd-table th,
.cd-table td {
  padding: 1rem 14px;
  border-bottom: 1px solid #ececec;
  text-align: left;
  vertical-align: middle;
}

.cd-table thead th {
  font-weight: 700;
  background: transparent;
  padding: 1rem;
}

.cd-table tbody tr:hover td { background: #fafafa; }

.cd-btn,
.cd-btn:hover {
  display: inline-block;
  padding: 1em 1.5em;
  text-decoration: none !important;
}

.cd-logout { 
	margin-top: 4rem; 
	padding: 2rem 0 0 0;
	border-top: 1px solid #ececec;
}
.cd-logout a,
.cd-logout a:hover {
	text-decoration: none !important;
	display: inline-block;
}

@media (max-width: 992px) {
  .cd-table {
    border: 0;
  }

  .cd-table thead {
    display: none;
  }

  .cd-table,
  .cd-table tbody,
  .cd-table tr,
  .cd-table td {
    display: block;
    width: 100%;
  }

  .cd-table tr {
    border: 1px solid #ececec;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
  }

  .cd-table td {
    border: 0;
    padding: .5rem 0;
  }

  .cd-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
  }
}