/* Auth page background - replaces controller customizations */
body {
  background: url('../images/aaravinfotech-auth-bg.jpeg') no-repeat center center / cover fixed !important;
}

/* Features container styles */
.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-icon {
  flex-shrink: 0;
  height: 18px;
  width: 20px;
}
.feature-title {
  color: rgb(252, 252, 253);
  font-size: 1.30rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin: 0;
  padding: 0;
}
/* Mobile: hide the entire block */
@media screen and (max-width: 767px) {
  .features-container {
    display: none;
  }
}
/* Tablet: vertical layout (one below another) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .features-container {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    width: 100%;
  }
}
/* Desktop: horizontal layout (in a row) */
@media screen and (min-width: 1024px) {
  .features-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
  }
  .feature-item {
    width: auto;
  }
}
/* Checkmark icon styles */
.checkmark-icon {
  display: inline-block;
  height: 18px;
  width: 20px;
  margin-top: -5px;
}
.checkmark-icon svg {
  width: 100%;
  height: 100%;
}
/* For tablets (768px to 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  #auth-column-one {
    display: none !important;
  }
}
/* For mobile devices (below 768px) */
@media (max-width: 767px) {
  #auth-column-one {
    display: none !important;
  }
}
.auth-header-width {
  width: 100%;
}
@media (min-width: 1400px) {
  .auth-header-width {
    width: 70%;
  }
}