body {
  font-family: "Poppins", sans-serif;
  font-size: 0.835rem;
}

.login-page {
  height: 100vh;
  position: relative;
  z-index: 0;
}
.login-page:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(0deg, rgba(11, 14, 71, 0.9) 0%, rgba(11, 14, 71, 0.9) 100%);
}
.login-page .login-cont {
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.login-page .login-cont p {
  font-size: 13px;
  color: #31313190;
}
.login-page .login-info {
  position: relative;
  z-index: 1;
}
.login-page .login-info h1 {
  color: #FFF;
  font-size: 5em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3em;
}
.login-page .login-info p {
  color: #fff;
}

#filterfade {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #33333330;
}

#side-filter-box {
  background-color: #fff;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20%;
  z-index: 999;
  box-shadow: 0px 0px 3px #33333320;
  padding: 20px;
  transform: translateX(100%);
  transition: all 320ms;
}

.form-label .req {
  color: #CE0058;
}

.showside {
  transform: translateX(0) !important;
  transition: all 320ms;
}

.footer {
  position: fixed;
  bottom: 0;
  padding: 16px 12px;
  left: 18%;
  right: 0;
  color: #777;
  z-index: -1;
}
.footer a {
  color: #777;
  text-decoration: none;
}

/* LEFT */
.left-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.left-content h1 {
    font-size: 60px;
    font-weight: 700;
}

.left-content p {
    margin: 20px 0;
    color: #dcdcdc;
}

.left-sidebar {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18%;
  overflow-y: scroll;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.left-sidebar::-webkit-scrollbar {
  width: 2px;
}
.left-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.left-sidebar::-webkit-scrollbar-thumb {
  background: #888;
}
.left-sidebar::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.left-sidebar .left-menu .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.left-sidebar .left-menu .menu .menu-head {
  margin: 8px 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.left-sidebar .left-menu .menu .menu-item {
  margin: 0px 16px;
  border-radius: 12px;
  margin-bottom: 4px;
}
.left-sidebar .left-menu .menu .menu-item a {
  display: inline-block;
  padding: 10px 12px;
  color: #00000090;
  text-decoration: none;
  border-radius: 12px;
}
.left-sidebar .left-menu .menu .menu-item a svg {
  width: 17px;
}
.left-sidebar .left-menu .menu .menu-item a:hover {
  background-color: #D2D4FE;
  color: #333;
}
.left-sidebar .left-menu .menu .active {
  background-color: #4D55FE;
}
.left-sidebar .left-menu .menu .active a {
  color: #fff;
}

.main-container {
  background: linear-gradient(90deg, rgba(77, 85, 254, 0.1) 0%, rgba(77, 85, 254, 0.1) 100%);
  margin-left: 18%;
  width: 82%;
  min-height: 100vh;
  padding-top: 60px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 60px;
}
.main-container .page-info h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
}
.main-container .main-content {
  margin-top: 24px;
}
/* Layout */
.main-layout {
    position: relative;
    height: 100%;
    z-index: 2;
}

.top-bar {
  position: fixed;
  left: 15%;
  top: 0;
  right: 0;
  padding: 12px 12px;
  font-size: 14px;
}
.top-bar .userbox {
  height: 30px;
  width: 30px;
  background-color: #D9D9D9;
  border-radius: 100%;
}
.top-bar .userbox svg {
  width: 17px;
}

.dash-cards .dash-card .title {
  color: #8E95A9;
  /* Content Text/ 14 - Medium */
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.dash-cards .dash-card .desc {
  color: #1C2A53;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.dash-cards .dash-card .value {
  color: #FF8901;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}

.name-avatar {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background-color: #898989;
  color: #fff;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: -2px 2px 4px 0 #0003 !important;
}

.action-btn {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 100%;
}
.action-btn:hover {
  background-color: #4D55FE40;
}
.action-btn svg {
  width: 17px;
}

.login-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Background */
.login-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(11,14,71,0.85), rgba(11,14,71,0.55)),
        url('/images/loginbg.png') no-repeat center/cover;
}

/* Logo */
.logo-area {
    position: absolute;
    top: 25px;
    left: 60px;
    z-index: 2;
}
.logo-area img {
    width: 220px;
}

/* Content */
.content-box {
    margin-left: 40px;
}

.content-box h1 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.content-box p {
    font-size: 17px;
    color: #dcdcdc;
}

/* LOGIN */
.login-container {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
}

.login-card {
    width: 420px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Login Titles */
.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Form Labels */
.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

/* Inputs */
.input-group {
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f8f9fa;
}

.form-control {
    border: none;
    background: transparent;
}

.input-group-text,
.toggle-password {
    border: none;
    background: transparent;
}

.input-group:focus-within {
    border-color: #2b6ef2;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(43, 110, 242, 0.1);
}

.input-group:hover {
    border-color: #2b6ef2;
}

/* Input Styling */
/* .form-control {
    height: 48px;
    border: none;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    padding: 12px 0;
    color: #333;
} */

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    background: transparent;
    box-shadow: none;
    border: none;
}

/*
.input-group-text {
    background: transparent;
    border: none;
    color: #666;
    padding: 0 12px;
    font-size: 16px;
}

.toggle-password {
    background: transparent !important;
    border: none !important;
    color: #666;
    padding: 0 12px;
    cursor: pointer;
    transition: color 0.3s ease;
} */

.toggle-password:hover,
.toggle-password:focus {
    color: #2b6ef2 !important;
    box-shadow: none !important;
}

/* Login Button */
/* .btn-login {
    background: linear-gradient(90deg, #2b6ef2 0%, #6bcf63 100%);
    border: none;
    border-radius: 10px;
    height: 48px;
    font-weight: 600;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
} */

/* Button */
.btn-login {
    background: linear-gradient(90deg, #2b6ef2, #6bcf63);
    border: none;
    color: white;
    height: 45px;
    border-radius: 8px;
}

/* Links */
.forgot-password {
    color: #2b6ef2;
    text-decoration: none;
}

.login-agreement {
    font-size: 12px;
    color: #777;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 110, 242, 0.3);
    color: white;
}

.btn-login:active {
    transform: translateY(0);
}

/* Or Separator */
.or-text {
    color: #999;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

/* Forgot Password Link */
/* .forgot-password {
    color: #2b6ef2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
} */

.forgot-password:hover {
    color: #1f50bd;
    text-decoration: underline;
}

/* Login Agreement Text */
/* .login-agreement {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin-top: 20px;
}

.login-agreement a {
    color: #2b6ef2;
    text-decoration: none;
    font-weight: 500;
} */

.login-agreement a:hover {
    text-decoration: underline;
}

/* Benefits Container */
.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/* Benefit bars */
.benefit-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    max-width: 420px;
}

.benefit-bar i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2b6ef2, #6bcf63);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
}

/* Benefit Card */
.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

/* Benefit Icon */
.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b6ef2, #6bcf63);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: white;
}

/* Benefit Card Heading */
.benefit-card h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .login-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .content-box {
        text-align: center;
        margin-bottom: 30px;
    }

    .content-box h1 {
        font-size: 32px;
    }

    .login-card {
        margin-top: 20px;
    }

    .benefits-container {
        flex-direction: row;
        gap: 10px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .benefit-card {
        flex: 1;
        min-width: 120px;
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .benefit-card h5 {
        font-size: 12px;
    }
}

/*# sourceMappingURL=style.css.map */
