/* W3hubs.com - Download Free Responsive Website Layout Templates designed on HTML5 CSS3,Bootstrap,Tailwind CSS which are 100% Mobile friendly. w3Hubs all Layouts are responsive cross browser supported, best quality world class designs. */

body {
  background-image: url('../img/bg1.jpg');
  padding: 0;
  margin: 0px;
  font-family: 'Lato', sans-serif;
}

#main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

form {
  background-color: rgba(60, 89, 107, 0.63);
  width: 40%;
  padding: 30px;
}

.username input,
.password input {
  width: 100%;
  height: 40px;
  border: 0px;
  margin: 5px 5px 15px;
  box-sizing: border-box;
  padding: 15px 15px;
}

.logout{
  position: fixed;
  left: 0;
  top: 0;
  margin: 10px;
  width:fit-content;
  background-color: #333;
}

input:focus,
button:focus {
  outline: none;
}

button {
  background: #63cdda;
  color: #fff;
  border: 0px;
  width: 100%;
  padding: 10px;
  margin: 5px;
  font-size: 24px;
  cursor: pointer;
}

.checkbox {
  color: #fff;
  padding-bottom: 10px;
}

a{
  text-decoration: none;
}
a:hover{

}

h3 {
  font-size: 24px;
  text-align: center;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #fff;
  text-transform: capitalize;
}

.social {
  display: flex;
  justify-content: center;
}

.social button {
  display: flex;
  width: 30px;
  padding: 5px;
  background-color: transparent;
  justify-content: center;
  text-transform: capitalize;
}

.social button:nth-child(1) {
  background-color: #3498db;
}

.social button:nth-child(2) {
  background-color: #e74c3c;
}

.fa {
  float: left;
  font-size: 18px;
}

.label {
  font-size: 40px;
  text-align: center;
  color: #fff;
  padding-bottom: 15px;
  text-transform: capitalize;
}

@media(max-width:610px) {
  form {
    width: 60%;
  }

  button {
    padding: 5px;
  }
}

@media(max-width:420px) {
  form {
    width: 70%;
  }

  h3 {
    margin: 10px;
  }
}

.dbbutton {
  padding: 10px;
  margin: 10px;
  text-align: center;
  cursor: pointer;
  background-color: #EAEAEA;
  color: rgb(37, 0, 138);
  font-size: 2em;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #333;
  transition: 0.2s;
}
.dbbutton:hover {
  box-shadow: 3px 3px 3px rgb(4, 0, 59);
  transform: scale(1.02);
  background-color: white;
  color: rgb(37, 0, 138);
}

.item-a {
  grid-area: header;
  min-width: 400px;
}
.item-b {
  grid-area: main;
}
.item-d {
  grid-area: footer;
}

.dbcontainer {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: auto;
  grid-template-areas: 
    "header header header header"
    "main main main main"
    "footer footer footer footer";
}


.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.5);
}
.loading-wheel {
  width: 20px;
  height: 20px;
  margin-top: -40px;
  margin-left: -40px;
  
  position: absolute;
  top: 50%;
  left: 50%;
  
  border-width: 30px;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
}
.style-2 .loading-wheel {
  border-style: double;
  border-color: #ccc transparent;
}
@-webkit-keyframes spin {
  0% {
      -webkit-transform: rotate(0);
  }
  100% {
      -webkit-transform: rotate(-360deg);
  }
}