/* Account Selection Specific Styles */
.account-option {
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.account-option:hover {
  transform: translateY(-2px);
}

.account-cta-section {
  margin-top: auto;
}

.account-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.account-option:hover .account-icon {
  transform: scale(1.1);
}

.account-title {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 1.5rem;
  color: #1E3643;
  margin-bottom: 0.75rem;
}

.account-description {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.feature-list li {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #1E3643;
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E49A21;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Vertical Divider */
@media (min-width: 768px) {
  .divider {
    position: relative;
  }

  .divider::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    bottom: 10%;
    width: 1px;
    background-color: rgba(108, 117, 125, 0.2);
  }
}

.page-title {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 2rem;
  color: #1E3643;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #6c757d;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* Price Box Styling */
.price-box {
  background: rgba(61, 125, 214, 0.2);
  border: 2px solid #3D7DD6;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-amount {
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 2rem;
  color: #3D7DD6;
  line-height: 1;
}

.price-period {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  color: #6c757d;
  margin-left: 0.25rem;
}

.price-box-free .price-amount {
  font-size: 1.75rem;
}

/* Button Size Alignment */
.btn-outline-primary.btn-lg {
  padding: 0.75rem 1.5rem;
}


.full-account-icon-img {
  max-width: 100px; 
  max-height: 100px; 
  width: auto;
  height: auto;
}

.guest-account-icon-img {
  max-width: 70px; 
  max-height: 70px; 
  width: auto;
  height: auto;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .col-md-6:first-child {
    margin-bottom: 3.5rem;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .account-title {
    font-size: 1.35rem;
  }
}
