/* BODY BACKGROUND FRAME */
body {
  background: #081a2b;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* TOP & BOTTOM GRADIENT STRIPS */
.top-bar,
.bottom-bar {
  height: 6px;
  background: linear-gradient(90deg, #ff4d4d, #4da6ff);
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* MAIN WRAPPER (MARGIN + ROUNDED CORNERS) */
.main-wrapper {
  margin-left: 170px;
  margin-right: 170px;
  margin-top: 20px;
  margin-bottom: 20px;
  height: calc(100vh - 62px);
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

/* LEFT PANEL */
.left-panel {
  background: linear-gradient(135deg, #0d2c4a, #123d63);
}

.stat-box {
  background-color: #ffffff0f;
  padding: 0.75rem;
  padding-top:1rem !important;
  border-radius: 10px;
  border: 1px solid;
  border-color: #ffffff14;
}

/* COPYRIGHT */
.copyright {
  font-size: 10px;
  color: #ffffff40;
}
}

/* RIGHT PANEL */
.right-panel {
  background: #f2f3f5;
}

/* LOGIN CARD */

/* QUICK DEMO */
.divider {
  font-size: 12px;
  color: #888;
  position: relative;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #ccc;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.demo-box {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  font-size: 12px;
  background: #fff;
}
.txt-top{
	font-size:1.5rem;
}
.text-sm{
	font-size: .875rem;
  line-height: 1.25rem;
  color: #ffffff80;
}
.txt-color{
	font-weight: 700;
	font-size: 1.25rem;
  line-height: 0.75rem;
}
.sub-txt-color{
	color:#fff6;
	font-size: .75rem;
  line-height: 0.75rem;
}
/* RESPONSIVE TYPOGRAPHY */
.responsive-title {
  font-size: 1.5rem;
}

.small-text {
  font-size: .875rem;
  line-height: 1.25rem;
  color: #ffffff80;
}
 
 
/* LOGIN CONTAINER */
.login-wrapper {
  width: 100%;
  margin: 5%;
  background: #f7f7f7;
  padding: 30px;
  border-radius: 10px;
}

/* HEADER */
.login-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.login-header img {
  height: 50px;
  margin-right: 10px;
}

.login-header h4 {
  margin: 0;
  font-weight: 600;
}

.sub-text {
  font-size: 14px;
  color: #6c757d;
}

/* LABEL */
label {
  font-size: 14px;
  margin-bottom: 6px;
}

/* INPUT GROUP */
.input-group-custom {
  position: relative;
  margin-bottom: 20px;
}

.input-group-custom input {
  width: 100%;
  height: 42px;
  padding-left: 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #e9ecef;
}

/* ICON */
.input-group-custom i {
  position: absolute;
  top: 8px;
  left: 12px;
  color: #6c757d;
  font-size: 18px;
}

/* BUTTON */
.login-btn {
  width: 100%;
  height: 50px;
  background: #245592;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
}

.login-btn:hover {
  background: #1d4a7c;
}


/* MOBILE FIXES */
@media (max-width: 768px) {

  .main-wrapper {
    margin: 10px;
    height: auto;
  }

  .left-panel {
    text-align: center;
  }

  .responsive-title {
    font-size: 22px;
  }

  .stat-box {
    padding: 15px;
  }

  .login-card {
    width: 100%;
    margin-top: 10px;
  }

  .input-icon {
    top: 36px;
  }

  .copyright {
    text-align: center;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .responsive-title {
    font-size: 20px;
  }

  .small-text {
    font-size: 13px;
  }

  .login-btn {
    height: 42px;
  }
}