@import url('../../admin/bootstrap/css/bootstrap.min.css');
@import url('../../admin/bootstrap/css/bootstrap-theme.min.css');
@import url('../../admin/bootstrap/css/font-awesome.min.css');
/* @import url('bootstrap.min.css'); */

/* universal container */
.container_b {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .container_b {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container_b {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container_b {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container_b {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container_b {
    max-width: 1320px;
  }
}


#content_main {
  border: 0;
  width: 100%;
  height: 90vh;
}

.attendance-navbar {
  border-bottom: 1px solid #eee8ee;
  background: #fff;
}

.attendance-navbar-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
}

.attendance-brand {
  color: #3c293d;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.attendance-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #786e79;
  font-size: 12px;
  font-weight: 600;
}

.attendance-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b1d62b;
  box-shadow: 0 0 0 4px rgba(177, 214, 43, .16);
}

.attendance-landing {
  color: #2d2030;
  background: #fff;
}

.attendance-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at 85% 15%, rgba(177, 214, 43, .24), transparent 28%),
    linear-gradient(135deg, #fff 0%, #faf6fa 55%, #f1e6ef 100%);
}

.attendance-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -170px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(146, 79, 136, .1);
}

.attendance-hero-grid {
  position: relative;
  z-index: 1;
}

.attendance-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.attendance-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #76406f;
  background: rgba(146, 79, 136, .1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.attendance-copy h1 {
  max-width: 680px;
  margin: 0 0 22px;
  color: #352037;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.attendance-copy > p {
  max-width: 620px;
  margin: 0 auto;
  color: #6f6370;
  font-size: 18px;
  line-height: 1.75;
}

.attendance-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
  color: #6f6370;
  font-size: 13px;
}

.attendance-highlights i {
  margin-right: 5px;
  color: #9cbd26;
}

.attendance-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 64px;
  padding-bottom: 76px;
}

.attendance-features article {
  padding: 30px;
  border: 1px solid #eee8ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(62, 40, 61, .06);
}

.attendance-features i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: #924f88;
  font-size: 18px;
}

.attendance-features h2 {
  margin: 20px 0 10px;
  color: #3c293d;
  font-size: 19px;
  font-weight: 700;
}

.attendance-features p {
  margin: 0;
  color: #786e79;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .attendance-hero {
    padding-top: 64px;
  }
}

@media (max-width: 700px) {
  .attendance-hero {
    padding: 48px 0;
  }

  .attendance-copy h1 {
    font-size: 42px;
  }

  .attendance-copy > p {
    font-size: 16px;
  }

  .attendance-highlights {
    flex-direction: column;
    gap: 8px;
  }

  .attendance-features {
    grid-template-columns: 1fr;
    padding-top: 44px;
    padding-bottom: 50px;
  }
}

/* login css */

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
  padding-bottom: 48px;
}

.login-box {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 32px;
}

.login-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.login-field {
  margin-bottom: 16px;
}

.login-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.login-input-wrapper {
  width: 100%;
}

.login-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.login-button {
  background-color: #B1D62B;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-button:hover {
  background-color: #9cc626;
}

/* end login css */
