@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

.customer-data-table th {
    background: #0bb1ad !important;
}

.results-block h3 {
    color: #0e525d;
    
}

body {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, rgba(11, 177, 173, 0.08) 100%);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
}

.form{
    color:white !important;
}
.logo {
  display: block;
  max-height: 90px;
  height: auto !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto 16px auto;
}

a {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}
a:hover {
  color: #0bb1ad;
}

button, input, optgroup, select, textarea {
  font-family: 'Poppins', sans-serif;
}

img {
    -webkit-filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

/*body#view-database div#results {
  display: table;
  box-sizing: content-box;
  max-width: 70%;
  margin: 0 auto;
}*/

div#results form {
  /*max-width: 60%;*/
  margin: 0 auto;
}

div.results-block {
  display: block;
  /*float: left;*/
  /*width: 900px;*/
  margin: 15px auto;
  border: 2px solid #0bb1ad;
  border-radius: 5px;
  background-color: #ffffff;
  padding: 2%;
  clear: both;
}

.table-block {
  width: 95%;
  margin: 0 auto;
}

table.customer-data-table {
  width: 100%;
}

table.customer-data-table th,
table.customer-data-table td {
  width: 50%;
  padding: 4px;
}

table.customer-data-table th {
  background-color: #0bb1ad;
  color: #fff;
  font-weight: 100;
}

table.customer-data-table td {
    background-color: #ffffff;
    color: #000;
    font-weight: 800;
    border: 1px solid #0bb1ad;
}

/*table#customer-table {
    border: 2px solid #0bb1ad;
}

table#property-table {
    border: 2px solid #e58b1a;
}*/

.form {
  background: #0e525d; 
  padding: 28px 28px 24px 28px;
  max-width: 760px;
  margin: 28px auto;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(11, 177, 173, 0.2);
}

.tab-group {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  gap: 10px;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li {
  flex: 1;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 10px 12px;
  background: #ffffff;
  color: #0bb1ad;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #0bb1ad;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  border-radius: 10px;
}
.tab-group li a:hover {
  background: #0bb1ad;
  color: #ffffff;
}
.tab-group .active a {
  background: #e58b1a;
  color: #ffffff;
  border-color: #e58b1a;
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 16px;
  font-size: 20px;
  letter-spacing: 0.2px;
}

h2 {
    text-align: center;
    color: #ffffff;
    font-weight: 1000;
    margin: 0;
    text-transform: capitalize;
}

span {
    color: #e58b1a;
    font-weight: bold;
}

p {
    text-align: center;
    color: #ffffff;
    margin: 0px 0px 18px 0px;
    font-size: 13px;
}

div.info {
    color: #ffffff;
    display: box;
    text-align: center;
    padding: 5px;
    margin-top: -20px;
    margin-bottom: 15px;
    border: 1px solid #e58b1a;
    background: #e58b1a;
}

label {
  position: relative;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  left: 0;
  color: #ffffff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
label .req {
  margin: 2px;
  color: #e58b1a;
}

label.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  left: 0;
  font-size: 13px;
}
label.active .req {
  opacity: 0;
}

label.highlight {
  color: #ffffff;
}

input, textarea, select {
  font-size: 14px;
  display: block;
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  margin: 6px 0 12px 0;
  background: #ffffff;
  border: 1px solid #0bb1ad;
  color: #0e525d;
  border-radius: 10px;
  -webkit-transition: border-color .25s ease, box-shadow .25s ease;
  transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, textarea:focus {
  outline: 0;
  border-color: #e58b1a;
  box-shadow: 0 0 0 3px rgba(229, 139, 26, 0.15);
}

textarea {
  border: 1px solid #0bb1ad;
  resize: vertical;
  height: auto;
}

.field-wrap {
  position: relative;
  margin-bottom: 6px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}
.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.top-row > div:last-child {
  margin: 0;
}

.button {
  border: 0;
  outline: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #0bb1ad;
  color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}
.button:hover, .button:focus {
  background: #e58b1a;
}

.button-block {
  display: block;
  width: 100%;
  margin: 6px auto 0 auto;
}

.forgot {
  margin-top: -6px;
  text-align: right;
  font-size: 12px;
  color: #ffffff;
}

.reset-user-password,
.deactivate-user {
    margin: 60px 0;
    color: white;
}

div#success {
    color: #fff;
    margin: 20px 0;
}

.form form {
    margin: 8px auto 0 auto;
}

input[type="submit"] {
    border: 0;
    outline: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: #0bb1ad;
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

input[type="submit"]:hover {
    background-color: #e58b1a;
}



@media only screen and (max-width: 1080px) {
  .form {
    max-width: 94%;
    padding: 22px 18px;
  }
}


