/* Ensure full height */
body {
  min-height: 100vh;
  background: var(--primary-color);
}

/* Form Box Background */
.formBox {
  background: url(../images/loginbg.png) top center no-repeat;
  background-size: cover;
  min-height: 80vh;
}

/* Input Group Styling */
.input-group {
  border-radius: 3rem !important;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in-out;
}

/* Input Field & Icon */
.input-group span,
.input-group input {
  background: transparent !important;
  color: var(--white-color) !important;
  border: none;
  padding: 10px 15px;
}
/* Icon Color */
.input-group span i {
  color: var(--third-color) !important;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

/* Placeholder Styling */
::placeholder {
  color: var(--gray-color) !important;
  font-size: 0.85rem;
  transition: all 0.3s ease-in-out;
}

/* Focus Effect */
.input-group input:focus {
  outline: none;
  box-shadow: 0 0 8px var(--third-color);
}

/* Focus Effect on Icon */
.input-group:focus-within span i {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Remember Me Checkbox */
.form-check-input {
  accent-color: var(--third-color);
  cursor: pointer;
}

/* Forgot Password & Sign Up Links */
.text-decoration-none {
  color: var(--third-color);
  transition: all 0.3s ease-in-out;
}

.text-decoration-none:hover {
  text-decoration: underline;
  color: var(--fifth-color);
}
.form-check-input {
  border: 2px solid var(--third-color);
  background: transparent;
  cursor: pointer;
}

/* When checkbox is checked */
.form-check-input:checked {
  background: var(--third-color);
  border-color: var(--third-color);
}

/* Making the tick (✔) white */
.form-check-input:checked::before {
  content: "\2713";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  width: 100%;
  height: 100%;
}








.rightImage img{
  width: 35rem;
}


/* responsive css */
@media (max-width: 1200px) {
.rightImage img {
    width: 30rem;
  }
}
@media (max-width: 992px) {
  .rightImage img {
    width: 25rem;
  }
}
@media (max-width: 768px) {
.rightImage img {
    width: 15rem;
    margin: auto;
  }
}