@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
  background-image: linear-gradient(to top right, #3470d1, #78ddff) !important;
  background-attachment: fixed;
}

.content-lg {
  max-width: 60% !important;
  padding: 10px;
  margin: 5% auto 0;
  border-radius: 4px;
  box-shadow: 0px 6px 12px #1851ab;
  border-bottom: 4px solid #9bbfde;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-control {
    padding: 7px !important;
    font-size: 14px !important;
	border-radius: 4px !important;
}

.login-title,
label,
.form-control,
form {
  font-family: "Roboto";
}

@media (max-width: 480px) {
  .content-lg {
    max-width: 90% !important;
    border-radius: 4px;
    margin: 8% auto;
  }
}

@media (max-width: 720px) {
	.content-lg {
		max-width: 90% !important;
		border-radius: 4px;
		margin: 8% auto;
	}
}

.img-logo {
	width: 60%;
}

#login-image {
  background: url("../../../img/login2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  border-radius: 12px;
  width: 100%;
  height: 400px;
  margin: 40px 0 0;
}

@keyframes move_wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

.report-button {
  /*background: #1986cf;*/
  background-image: linear-gradient(-60deg, #66baf2 3%, #3baaf5 40%);
  border: 2px solid #2f99e0;
  position: fixed;
  right: 50px;
  bottom: 40px;
  border-radius: 10px 10px 0 10px;
  padding: 9px 20px;
  color: #fff;
  font-size: 13px;
}
.report-button:hover {
  background: #319ae0;
  cursor: pointer;
}

.report-body {
  background: #fff;
  border: 2px solid #2f99e0;
  border-radius: 10px;
  position: fixed;
  right: 50px;
  bottom: 40px;
  display: none;
  width: 0px;
  height: 0px;
  animation-name: open;
  animation-duration: 0.3s;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
.report-header {
  background: #2f99e0;
  color: #fff;
  padding: 10px;
  font-size: 13px;
  border-radius: 8px 8px 0 0;
}
.report-body-open {
  width: 400px;
  height: 500px;
  z-index: 999;
}
.report-body-close {
  width: 0px;
  height: 0px;
}
.report-close {
  cursor: pointer;
  color: #fff;
  padding: 2px;
  float: right;
}
.report-close:hover {
  color: #ddd;
}
.report-list-head {
  background: #eee;
  padding: 5px;
  margin: 6px;
  border-radius: 3px;
  font-size: 11px;
}
.report-list {
  list-style: none;
  padding: 5px;
  margin: 2px;
}
.report-list li {
  background: #edfaff;
  border: 1px solid #cdecf7;
  border-radius: 10px 10px 10px 0;
  font-size: 11px;
  padding: 6px;
}
.report-list li.active {
  background: #defff1;
  border: 1px solid #aaf0d2;
  border-radius: 10px 10px 10px 0;
  font-size: 11px;
  padding: 6px;
}
.report-list li .label {
  font-size: 10px;
  font-weight: bold;
  color: #3aa1c9;
  padding: 0;
  padding: 0;
  display: block;
}
.report-list li .name {
  font-size: 12px;
  font-weight: bold;
  color: #555;
  padding: 0;
  padding: 0;
  display: inline-block;
}
.report-list li .img {
  width: 32px;
  height: 32px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.report-list .time {
  color: #138ad4;
  font-size: 10px;
  text-align: right;
}
.report-list .head {
  display: block;
}
.report-list li .admin {
  width: 100%;
  background: #fff;
  border: 1px solid #cdecf7;
  padding: 4px;
  color: #333;
  border-radius: 10px 10px 0 10px;
}
.report-foot {
  font-size: 11px;
  padding: 10px;
}
.report-foot a.label {
  text-align: center;
  color: #138ad4;
}
.report-foot .form-control,
.report-foot .select2 {
  font-size: 11px !important;
  border-radius: 6px;
  margin: 2px 0;
}

#send {
  margin: 5px auto;
  padding: 7px 8px;
  /* float: right;
  position: fixed; */
  /* right: 60px;
  bottom: 65px; */
  /* border-radius: 50%; */
}
