:root {
    --bg-gradient-jet: linear-gradient(
    120deg,
    hsla(120, 35%, 45%, 0.9) 0%,
    hsla(120, 30%, 35%, 0.8) 100%
  ), hsl(120, 32%, 40%);
}
/* Link Card Styling */
.link-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  }
  
  /* Golden shine effect */
  .link-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 215, 0, 0.1) 40%,
      rgba(255, 215, 0, 0.3) 50%,
      rgba(255, 215, 0, 0.1) 60%,
      transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 1;
    z-index: 1;
    animation: goldenShine 1.5s ease-in-out infinite;
  }
  
  /* Golden border effect */
  .link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(
      135deg,
      #ffd700,
      #ffed4e,
      #ffd700,
      #ffed4e,
      #ffd700
    );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 1;
  }
  
  .link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15), 0 8px 25px rgba(0,0,0,0.1);
    border-color: transparent;
  }
  
  .link-card:hover::before {
    opacity: 1;
    animation: goldenShine 1.5s ease-in-out infinite;
  }
  
  .link-card:hover::after {
    opacity: 1;
  }
  
  /* Golden shine animation */
  @keyframes goldenShine {
    0% {
      transform: rotate(45deg) translateX(-100%) translateY(-100%);
    }
    50% {
      transform: rotate(45deg) translateX(0%) translateY(0%);
    }
    100% {
      transform: rotate(45deg) translateX(100%) translateY(100%);
    }
  }
  
  /* Link Header */
  .link-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
  }
  
  .link-header h4 {
    margin: 0 0 8px 0;
    color: #000000;
    font-size: 1.2rem;
  }
  
  .link-url {
    margin: 0;
    color: #000000;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
  }
  
  /* Link Actions */
  .link-actions {
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 100;
  }
  
  .edit-btn {
    background: linear-gradient(135deg, rgb(37, 150, 190) 0%, rgb(37, 150, 190) 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(34, 196, 77, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 100 !important;
  }
  
  .edit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
  }
  
  .edit-btn:hover::before {
    left: 100%;
  }
  
  .edit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(34, 196, 77, 0.4) !important;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
  }
  
  /* Enhanced testimonials list styling */
  .testimonials-list {
    gap: 20px;
  }
  
  .testimonials-item {
    transition: all 0.3s ease;
  }
  
  .testimonials-item:hover {
    transform: scale(1.02);
  }
  
  /* Content card enhanced styling */
  .content-card {
    padding: 25px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
  }
  
  /* Ensure link text is above shine effects */
  [data-testimonials-text] {
    position: relative;
    z-index: 100;
  }
  
  [data-testimonials-text] a {
    position: relative;
    z-index: 100;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .link-header h4 {
      font-size: 1.1rem;
    }
    
    .link-url {
      font-size: 0.9rem;
    }
    
    .edit-btn {
      padding: 10px 20px !important;
      font-size: 0.95rem !important;
    }
  }
  
  @media (max-width: 480px) {
    .link-header h4 {
      font-size: 1rem;
    }
    
    .link-url {
      font-size: 0.85rem;
    }
    
    .edit-btn {
      padding: 8px 16px !important;
      font-size: 0.9rem !important;
    }
  }
  
  /* Testimonial Form Styling */
  .testimonial-form-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .testimonial-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(37, 150, 190), #ffd700, rgb(37, 150, 190));
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
  }
  
  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .testimonial-textarea {
    width: 100%;
    min-height: 120px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
    resize: vertical;
    box-sizing: border-box;
  }
  
  .testimonial-textarea:focus {
    outline: none;
    border-color: rgb(37, 150, 190);
    box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.1);
    transform: translateY(-2px);
  }
  
  .testimonial-textarea::placeholder {
    color: #6c757d;
    font-style: italic;
  }
  
  .form-actions {
    text-align: center;
  }
  
  .submit-testimonial-btn {
    background: linear-gradient(135deg, rgb(37, 150, 190) 0%, rgb(37, 150, 190) 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
  }
  
  .submit-testimonial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
  }
  
  .submit-testimonial-btn:hover::before {
    left: 100%;
  }
  
  .submit-testimonial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 150, 190, 0.4);
    background: linear-gradient(135deg, rgb(37, 150, 190) 0%, rgb(37, 150, 190) 100%);
  }
  
  .submit-testimonial-btn:active {
    transform: translateY(-1px);
  }
  
  .btn-text {
    position: relative;
    z-index: 1;
  }
  
  .btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    animation: rocketBounce 2s ease-in-out infinite;
  }
  
  @keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
  }
  
  /* Responsive form adjustments */
  @media (max-width: 768px) {
    .testimonial-form-container {
      margin: 30px auto;
      padding: 0 15px;
    }
    
    .testimonial-form {
      padding: 25px;
    }
    
    .testimonial-textarea {
      padding: 16px;
      font-size: 0.95rem;
    }
    
    .submit-testimonial-btn {
      padding: 14px 28px;
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-form {
      padding: 20px;
    }
    
    .testimonial-textarea {
      padding: 14px;
      font-size: 0.9rem;
    }
    
    .submit-testimonial-btn {
      padding: 12px 24px;
      font-size: 0.95rem;
    }
  }
  
  /* ===== PROFILE FORM STYLING ===== */
  
  .profile-section {
    margin: 40px 0;
  }
  
  .profile-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Profile Photo Section */
  .profile-photo-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .profile-photo-container {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .profile-photo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  
  .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(34, 196, 77, 0.9), rgba(22, 163, 74, 0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .profile-photo-container:hover .photo-overlay {
    transform: translateY(0);
  }
  
  .photo-upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
  }
  
  .photo-upload-btn ion-icon {
    font-size: 24px;
  }
  
  /* Profile Form Container */
  .profile-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  .profile-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  
  /* Form Groups */
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
  }
  
  .form-label ion-icon {
    font-size: 20px;
    color: rgb(37, 150, 190);
  }
  
  .form-input {
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    color: #000000;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
  }
  
  .form-input:focus {
    outline: none;
    border-color: rgb(37, 150, 190);
    box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.1);
    transform: translateY(-2px);
  }
  
  .form-input::placeholder {
    color: #6c757d;
    font-style: italic;
  }
  
  .form-help {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 4px;
  }
  
  /* Password Input Group */
  .password-input-group {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .password-input-group .form-input {
    flex: 1;
    padding-right: 50px;
  }
  
  .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .password-toggle:hover {
    color: rgb(37, 150, 190);
    background: rgba(37, 150, 190, 0.1);
  }
  
  .password-toggle ion-icon {
    font-size: 20px;
  }
  
  /* Form Divider */
  .form-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
  }
  
  .form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
  }
  
  .form-divider span {
    background: #ffffff;
    padding: 0 20px;
    color: rgb(37, 150, 190);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
  }
  
  /* Form Actions */
  .form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .save-profile-btn, .reset-form-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
  }
  
  .save-profile-btn {
    background: linear-gradient(135deg, rgb(37, 150, 190) 0%, rgb(37, 150, 190) 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.3);
  }
  
  .save-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 150, 190, 0.4);
    background: linear-gradient(135deg, rgb(37, 150, 190) 0%, rgb(37, 150, 190) 100%);
  }
  
  .reset-form-btn {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
  }
  
  .reset-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 117, 125, 0.4);
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  }
  
  .save-profile-btn ion-icon, .reset-form-btn ion-icon {
    font-size: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .profile-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .profile-photo-section {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .profile-container {
      padding: 0 15px;
    }
    
    .profile-form-container {
      padding: 25px;
    }
    
    .form-actions {
      flex-direction: column;
      align-items: center;
    }
    
    .save-profile-btn, .reset-form-btn {
      width: 100%;
      max-width: 300px;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .profile-photo-container {
      width: 200px;
      height: 200px;
    }
    
    .profile-form-container {
      padding: 20px;
    }
    
    .form-input {
      padding: 12px 16px;
      font-size: 0.95rem;
    }
    
    .save-profile-btn, .reset-form-btn {
      padding: 14px 24px;
      font-size: 1rem;
    }
  }
  
  /* Profile Photo Input Container */
  .profile-photo-input-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .profile-photo-preview {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 10%;
    overflow: hidden;
    cursor: pointer !important;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  
  .profile-photo-preview:hover {
    border-color: rgb(37, 150, 190);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.2);
  }
  
  .profile-photo-preview:active {
    transform: scale(0.98);
  }
  
  .profile-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }
  
  .photo-upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 150, 190, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    padding: 10px;
    cursor: pointer !important;
    pointer-events: auto;
  }
  
  .profile-photo-preview:hover .photo-upload-overlay {
    opacity: 1;
  }
  
  .photo-upload-overlay ion-icon {
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .photo-upload-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
  }
  
/* ===== LOGIN FORM STYLING ===== */

.login-container {
  min-height: 100vh;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

/* Logo Section */
.logo-section {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

/* Login Form Container */
.login-form-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 450px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.google-success-icon {
  margin-bottom: 20px;
  animation: successBounce 0.6s ease-in-out;
}

.reset-icon, .otp-icon, .reset-success-icon {
  margin-bottom: 20px;
  animation: successBounce 0.6s ease-in-out;
}

@keyframes successBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px 0;
}

.form-subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Login Form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Groups */
.login-form .form-group {
  margin-bottom: 0;
}

.login-form .form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.login-form .form-label ion-icon {
  font-size: 18px;
  color: #667eea;
}

.login-form .form-input {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333;
  box-sizing: border-box;
}

.login-form .form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.login-form .form-input::placeholder {
  color: #999;
}

/* Form Help Text */
.form-help {
  color: #666;
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 6px;
  line-height: 1.4;
}

/* Terms Link */
.terms-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.terms-link:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

/* Resend OTP Section */
.resend-otp-section {
  text-align: center;
  margin: 20px 0;
}

.resend-otp-section p {
  color: #666;
  font-size: 0.9rem;
  margin: 0 0 10px 0;
}

.resend-link {
  background: none;
  border: none;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.resend-link:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

.resend-link:disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: none;
}

.countdown {
  color: #666;
  font-size: 0.85rem;
  margin-top: 10px;
}

.countdown span {
  margin: 0 2px;
}

#timer {
  color: #667eea;
  font-weight: 600;
}

/* Password Input Group */
.login-form .password-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.login-form .password-input-group .form-input {
  padding-right: 50px;
}

.login-form .password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.login-form .password-toggle:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.login-form .password-toggle ion-icon {
  font-size: 18px;
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  user-select: none;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background: #667eea;
  border-color: #667eea;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.forgot-password {
  color: #667eea;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%);
}

.login-btn:active {
  transform: translateY(-1px);
}

.login-btn ion-icon {
  font-size: 20px;
}

/* Divider */
.divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e1e5e9, transparent);
}

.divider span {
  background: rgba(255, 255, 255, 0.95);
  padding: 0 20px;
  color: #999;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Google Login Button */
.google-login-btn {
  background: #ffffff;
  color: #333;
  border: 2px solid #e1e5e9;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.google-login-btn:hover {
  border-color: #667eea;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.google-login-btn:active {
  transform: translateY(0);
}

.google-icon {
  width: 20px;
  height: 20px;
}

/* Register Section */
.register-section {
  text-align: center;
  margin-top: 20px;
}

.register-section p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.register-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.register-link:hover {
  color: #5a6fd8;
  text-decoration: underline;
}

/* Login Footer */
.login-footer {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.login-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design - Enhanced */
@media (max-width: 1200px) {
  .login-container {
    min-width: 100%;
    border-radius: 0;
  }
  
  .login-form-container {
    max-width: 500px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .login-container {
    padding: 15px;
    min-height: 100vh;
    border-radius: 0;
  }
  
  .login-form-container {
    padding: 30px 25px;
    max-width: 100%;
    margin: 0 10px;
  }
  
  .form-title {
    font-size: 1.6rem;
  }
  
  .login-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .google-login-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .forgot-password {
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 10px;
  }
  
  .login-form-container {
    padding: 25px 20px;
    margin: 0 5px;
  }
  
  .form-title {
    font-size: 1.4rem;
  }
  
  .login-form .form-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .google-login-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .form-options {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .forgot-password {
    align-self: flex-end;
    font-size: 0.85rem;
  }
  
  .register-section p {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .login-container {
    padding: 5px;
  }
  
  .login-form-container {
    padding: 20px 15px;
    margin: 0 2px;
  }
  
  .form-title {
    font-size: 1.3rem;
  }
  
  .login-form .form-input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .login-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .google-login-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .google-icon {
    width: 18px;
    height: 18px;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .login-container {
    min-height: 100vh;
    padding: 10px;
  }
  
  .login-form-container {
    padding: 20px 30px;
    max-width: 600px;
  }
  
  .form-header {
    margin-bottom: 20px;
  }
  
  .form-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  .form-subtitle {
    font-size: 0.9rem;
  }
  
  .login-form {
    gap: 15px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .login-container {
    background-size: 25px;
  }
}

/* Print styles */
@media print {
  .login-container {
    background: white !important;
    min-height: auto;
  }
  
  .login-form-container {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
  