/* Modern Auth Pages Styling - JeronPOS */

/* Background Gradient */
.auth-bg {
  background: linear-gradient(135deg, #4f68df 0%, #3b82f6 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Wave Pattern Elements */
.auth-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' width='100' height='100' viewBox='0 0 100 100' patternUnits='userSpaceOnUse' patternTransform='rotate(25)'%3E%3Cpath d='M 0 20 A 50 50 0 0 0 100 20 L 100 80 A 50 50 0 0 1 0 80 Z' fill='rgba(255, 255, 255, 0.1)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
}

/* Geometric Elements */
.auth-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='dots' width='20' height='20' viewBox='0 0 20 20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='10' cy='10' r='2' fill='rgba(255, 255, 255, 0.15)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23dots)'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

/* Content Container */
.auth-content {
  position: relative;
  z-index: 1;
}

/* Split Layout for Login Page */
.auth-split-layout {
  display: flex;
  min-height: 100vh;
}

.auth-split-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

.auth-split-right {
  flex: 1;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Card Styling */
.auth-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 450px;
  padding: 2.5rem;
}

/* Form Elements */
.auth-input {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 1rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.auth-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.auth-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1e293b;
}

.auth-button {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #4f68df 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.auth-button:hover {
  background: linear-gradient(135deg, #3b54c8 0%, #2563eb 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Typography */
.auth-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.auth-subheading {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
}

/* Pricing Page */
.pricing-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin: 1rem 0;
}

.pricing-description {
  margin-bottom: 1rem;
  color: #64748b;
}

.pricing-features {
  margin: 1.5rem 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.pricing-feature svg {
  color: #10b981;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-premium {
  background: linear-gradient(135deg, #4f68df 0%, #3b82f6 100%);
  color: white;
}

.pricing-free {
  background-color: #e2e8f0;
  color: #1e293b;
}

.pricing-premium:hover {
  background: linear-gradient(135deg, #3b54c8 0%, #2563eb 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pricing-free:hover {
  background-color: #cbd5e1;
}

/* Registration Form */
.register-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.register-progress::before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #e2e8f0;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
}

.register-step {
  background-color: white;
  border: 2px solid #e2e8f0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #64748b;
  position: relative;
  z-index: 1;
}

.register-step.active {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.register-step.completed {
  background-color: #10b981;
  border-color: #10b981;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .auth-split-layout {
    flex-direction: column;
  }
  
  .auth-split-left,
  .auth-split-right {
    width: 100%;
    padding: 2rem 1rem;
  }
  
  .auth-card {
    padding: 1.5rem;
  }
  
  .auth-heading {
    font-size: 1.5rem;
  }
}
