@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Lato", sans-serif;
}

.login_wrap {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login_wrap .login_cont {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login_wrap .login_cont .loginlogo {
  width: 70%;
  margin: -110px auto 45px;
}

.login_wrap .login_cont h1 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #1ABC9C;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #909090;
  margin-bottom: 1px;
}

/* label container */
.radio-button-container {
  display: block;
  position: relative;
  padding-left: 26px;
  line-height: 19px;
  margin-bottom: 0px;
  margin-left: 0;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #3e3e3e;
}

.form-label-2 {
  font-size: 18px;
  font-weight: 600;
  color: #646464;
}

/* Hide the browser's default radio button */
.radio-button-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

/* On mouse-over, add a grey background color */
.radio-button-container:hover input ~ .checkmark {
  border-color: rgba(0, 0, 0, 0.5);
}

/* When the radio button is checked */
.radio-button-container input:checked ~ .checkmark {
  background-color: transparent;
  border-color: #1ABC9C;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-button-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-button-container .checkmark:after {
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1ABC9C;
}

/**
 *************************************************** Custom Checkboxes
 */
.custom_checkbox {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  user-select: none;
  position: relative;
}

/* Hide the native checkbox */
.custom_checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Checkbox visual box */
.custom_checkbox__icon {
  width: 20px;
  height: 20px;
  border: 2px solid #999;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all 0.25s ease;
  background-color: #fff;
}

/* On hover */
.custom_checkbox:hover .custom_checkbox__icon {
  border-color: #1ABC9C;
}

/* Checked state */
.custom_checkbox__input:checked + .custom_checkbox__icon {
  border-color: #1ABC9C;
  background-color: #1ABC9C;
}

/* Checkmark (using pseudo-element) */
.custom_checkbox__icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 2px;
  left: 5px;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Show checkmark when checked */
.custom_checkbox__input:checked + .custom_checkbox__icon::after {
  opacity: 1;
}

.btn {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 20px;
  border-radius: 8px;
  transition: background-color 0.3s, border-color 0.3s;
  justify-content: center;
}

.btn-primary {
  background-color: #1ABC9C;
  border-color: #1ABC9C;
}

.btn-primary:hover {
  background-color: #148f77;
  border-color: #148f77;
}

.info_card {
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.info_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.info_card::before {
  content: "";
  width: 50px;
  height: 50px;
  background: #FFC857;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 0;
  border-radius: 100px;
  -webkit-animation: zoom 5s infinite linear;
  -moz-animation: zoom 5s infinite linear;
  animation: zoom 5s infinite linear;
  opacity: 0.2;
}

.info_card:after {
  content: "";
  width: 50px;
  height: 50px;
  background: #FFC857;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 0;
  border-radius: 100px;
  -webkit-animation: zoom 5s infinite linear;
  -moz-animation: zoom 5s infinite linear;
  animation: zoom 5s infinite linear;
  opacity: 0.2;
}

.info_card .card-body {
  padding: 30px;
}

.info_card .icon_info {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.info_card .icon_info svg {
  fill: #1ABC9C;
}

.info_card .icon_info_text .ad_title {
  font-size: 18px;
  color: #aaaaaa;
  margin: 0 0 5px 0;
}

.info_card .icon_info_text .ad_card_title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #050c35;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.statistics_report {
  padding: 15px;
}

.statistics_report .stats {
  width: 100%;
  flex: 0 0 auto;
}

.statistics_report .stats .stats_item_wrap {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.statistics_report .stats .stat-item {
  background: linear-gradient(90deg, rgba(31, 58, 147, 0.05) 0%, rgba(26, 188, 156, 0.12) 100%);
  padding: 15px;
  border-radius: 15px;
  width: 23%;
  position: relative;
}

.statistics_report .stats .stat-item .icon__ {
  font-size: 70px;
  padding: 14px;
  border-radius: 50%;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  color: #fff;
}

.statistics_report .stats .stat-item h6 {
  font-size: 40px;
  line-height: 1;
  color: #050c35;
  line-height: 1;
}

.statistics_report .stats .stat-item p {
  font-size: 18px;
  color: #464646;
  margin-bottom: 0;
  font-weight: 600;
}

.statistics_report .chart-box {
  width: 100%;
  margin-top: 20px;
}

.work_details {
  padding: 15px;
}

.custom_progress {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 4px;
}

.custom_progress_bar {
  height: 100%;
  background: linear-gradient(90deg, #2196f3 0%, #4caf50 100%);
  border-radius: 5px 0 0 5px;
  transition: width 0.4s;
}

.pie_chart_wrap {
  padding: 15px;
}
