/* CSS Styles */

/* Body background for login page */
body.halcyon-login-page {
  margin: 0;
  padding: 0;
  background-color: #010A0A;
  min-height: 100vh;
  color: #fff;
}

.halcyon-login-container {
  max-width: 420px;
  margin: 60px auto;
  background: #001A33 !important;
  border-radius: 8px;
  padding: 2rem;
}

.halcyon-login-container .form-control {
  background-color: #010A0A;
  border: 1px solid #010A0A;
  color: #fff;
}

.halcyon-login-container .btn-primary {
  background-color: #00FBF4;
  color: #000;
  font-weight: 600;
  text-decoration: none !important;
}

.pw-field {
  padding-right: 2.5rem;
}

.toggle-password {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #ccc;
}

.toggle-password:hover {
  color: #fff;
}

.position-relative {
  position: relative;
}

/* Forgot Password Link styles */
.forgot-password-link {
  text-align: center;
  margin-top: 1rem;
}

.forgot-password-link a {
  color: #00FBF4;
  text-decoration: none;
}

.forgot-password-link a:hover {
  text-decoration: underline;
}

/* Landing Page & Big Rounded Box styles */
.landing-container {
  max-width: 1200px;
  /* Removed auto centering so the boxes sit closer to the sidebar */
  margin: 20px 0 0 0;
  width: 100%;
}

.big-rounded-box {
  background: #1f243a;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
}

.big-rounded-box:hover {
  background: #2a2f4a;
  transform: translateY(-3px);
}

.big-rounded-box h4 {
  margin-bottom: 0.3rem;
  color: #00FBF4;
}

.big-rounded-box p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.box-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 40px;
  padding: 0.5rem 1rem;
  background-color: #00FBF4;
  border-radius: 5px;
  font-weight: 600;
  color: #000 !important;
  text-decoration: none !important;
}

.box-link:hover {
  color: #000;
  font-weight: 600;
}

/* Disabled box links: allow pointer events so tooltips work */
.box-link.disabled-link {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: auto;
}

/* Input focus styling */
.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(74, 222, 128, 0.25);
}

/* Password Reset Page styles */
body.halcyon-reset-page {
  margin: 0;
  padding: 0;
  background-color: #010A0A;
  min-height: 100vh;
  color: #fff;
}

/* Verification Header styling for landing page */
.halcyon-landing-verification-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
  width: auto;
}

/* Adjust verification header for mobile view so it sits below the mobile navbar */
@media (max-width: 767px) {
  .halcyon-landing-verification-header {
    top: 100px; /* Adjust this value as necessary for your mobile navbar height */
  }
}

/* NEW SIDEBAR & MAIN CONTENT STYLES */

/* Main page container to add padding-top so fixed navbar doesn’t cover content */
.halcyon-page-container {
  padding-top: 60px;
}

/* Adjustments for mobile view so that the sidebar (navbar) doesn’t overlap content */
@media (max-width: 767px) {
  .halcyon-main-content {
    margin-top: 0;
  }
}

/* New CSS for landing page box columns to force a wider (max-width: 400px) box */
.landing-box-col {
  flex: 0 0 auto;
  max-width: 400px;
}

/* The rest of your CSS remains unchanged... */
