/* Auth Container - Consistent with services.html */
.auth-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f9fafb;
  font-family: 'Inter', sans-serif;
  padding: 20px;
}

/* Header - Matching services.html */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-svg {
  width: 180px;
  height: 45px;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #3328bf;
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.login-btn, .signup-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.login-btn {
  color: #374151;
  border: 1px solid #d1d5db;
}

.login-btn:hover {
  background-color: #f3f4f6;
}

.signup-btn {
  background-color: #3328bf;
  color: white;
}

.signup-btn:hover {
  background-color: #2a1fa0;
}

.auth-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.auth-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #3328bf;
  margin: 20px 0 10px;
}

.auth-header p {
  color: #6b7280;
  font-size: 16px;
}

/* Form Container - Modern Card */
.auth-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 40px;
}

/* Form Elements - Clean Design */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  color: #9ca3af;
}

.input-with-icon input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.input-with-icon input:focus {
  outline: none;
  border-color: #3328bf;
  box-shadow: 0 0 0 3px rgba(51, 40, 191, 0.1);
}

.input-with-icon .toggle-password {
  left: auto;
  right: 12px;
  cursor: pointer;
  color: #6b7280;
}

/* Buttons - Matching Services Page */
.auth-button {
  background-color: #3328bf;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.auth-button:hover {
  background-color: #2a1fa0;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.social-button:hover {
  background-color: #f9fafb;
}

/* Features Section - Matching Services Cards */
.auth-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 40px;
  border-left: 1px solid #e5e7eb;
}

.feature-card {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 24px;
  color: #3328bf;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.feature-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Footer - Matching Services Page */
.main-footer {
  background-color: white;
  padding: 40px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 180px;
  height: 45px;
}

.footer-description {
  color: #6b7280;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #374151;
  transition: color 0.2s;
}

.social-link:hover {
  color: #3328bf;
}

.footer-links-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

.footer-link {
  display: block;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #3328bf;
}

.contact-detail {
  color: #6b7280;
  margin-bottom: 10px;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

.cta-button {
  background-color: #3328bf;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #2a1fa0;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-header {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .auth-form-container {
    grid-template-columns: 1fr;
  }
  
  .auth-features {
    padding-left: 0;
    padding-top: 40px;
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .main-header {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .auth-container {
    padding: 10px;
  }
  
  .auth-form-container {
    padding: 20px;
  }
  
  .social-auth {
    grid-template-columns: 1fr;
  }
  
  .auth-header h2 {
    font-size: 24px;
  }
}