 :root {
     --primary-dark: #1f3b2d;
     --primary: #2a5a47;
     --primary-light: #3a7a5f;
     --accent: #4CAF50;
     --error: #f44336;
     --success: #4CAF50;
     --warning: #ff9800;
 }

 body {
     font-family: 'Inter', sans-serif;
     background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .glass-effect {
     background: rgba(255, 255, 255, 0.7);
     backdrop-filter: blur(20px);
     border-radius: 20px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     box-shadow: 0 15px 35px rgba(31, 59, 45, 0.1);
 }

 .btn-primary {
     background: linear-gradient(to right, var(--primary-dark), var(--primary)) !important;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(31, 59, 45, 0.3);
 }

 .btn-primary:active {
     transform: translateY(-1px);
 }

 .btn-primary::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
     transform: translateX(-100%);
     transition: transform 0.4s ease;
 }

 .btn-primary:hover::after {
     transform: translateX(100%);
 }

 .side-panel {
     background: linear-gradient(135deg, var(--primary-dark), var(--primary));
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .side-panel::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231f3b2d' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
 }

 .floating-shape {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     animation: float 8s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) rotate(5deg);
     }
 }

 .input-field {
     transition: all 0.3s ease;
     background: rgba(255, 255, 255, 0.8);
 }

 .input-field:focus {
     box-shadow: 0 0 0 3px rgba(42, 90, 71, 0.2);
     background: white;
     transform: translateY(-2px);
 }

 .password-strength {
     height: 6px;
     border-radius: 3px;
     transition: all 0.4s ease;
     width: 0%;
 }

 .strength-weak {
     background: var(--error);
     width: 25%;
 }

 .strength-fair {
     background: var(--warning);
     width: 50%;
 }

 .strength-good {
     background: #ffc107;
     width: 75%;
 }

 .strength-strong {
     background: var(--success);
     width: 100%;
 }

 .feature-card {
     transition: all 0.3s ease;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 12px;
     padding: 1.5rem;
 }

 .feature-card:hover {
     transform: translateY(-5px);
     background: rgba(255, 255, 255, 0.15);
 }

 .password-meter-container {
     max-height: 0;
     opacity: 0;
     overflow: hidden;
     transition: all 0.4s ease;
 }

 .password-meter-container.active {
     max-height: 135px;
     opacity: 1;
 }

 .lock-icon {
     transition: all 0.3s ease;
 }

 .lock-icon.hidden {
     opacity: 0;
     transform: scale(0.8);
 }

 @media (max-width: 1023px) {
     .side-panel {
         display: none;
     }
 }

 .mobile-logo {
     display: none;
 }

 @media (max-width: 1023px) {
     .mobile-logo {
         display: flex;
         justify-content: center;
         margin-bottom: 1.5rem;
     }
 }

 /* Fix for input icons visibility */
 .input-icon {
     transition: all 0.3s ease;
     z-index: 10;
 }

 .input-field:focus+.input-container .input-icon {
     color: var(--primary);
 }

 /* Ensure password criteria is fully visible */
 .password-criteria {
     margin-top: 8px;
 }

 .criteria-item {
     display: flex;
     align-items: center;
     margin-bottom: 4px;
 }

 @media (min-width: 1200px) and (max-width: 1299px) {
     .text-lg {
         font-size: 12px !important;
         line-height: 17px !important;
     }

     .container {
         max-width: 870px !important;
     }

     .text-3xl {
         font-size: 12px !important;
         line-height: 17px !important;
     }

     .mb-15 {
         margin-bottom: 15px !important;
     }

     .mt-20 {
         margin-top: 20px !important;
     }

     .lg\:p-12 {
         padding: 30px 3rem;
     }

     .hidden-1200 {
         display: none !important;
     }


 }

 @media (min-width: 1300px) and (max-width: 1399px) {
     .text-lg {
         font-size: 14px !important;
         line-height: 19px !important;
     }

     .container {
         max-width: 950px !important;
     }

     .text-3xl {
         font-size: 14px !important;
         line-height: 19px !important;
     }

     .mb-15 {
         margin-bottom: 15px !important;
     }

     .mt-20 {
         margin-top: 20px !important;
     }

     .lg\:p-12 {
         padding: 30px 3rem;
     }

     .hidden-1200 {
         display: none !important;
     }


 }

  @media (min-width: 1400px) and (max-width: 1499px) {
     .text-lg {
         font-size: 16px !important;
         line-height: 19px !important;
     }

     .container {
         max-width: 1050px !important;
     }

     .text-3xl {
         font-size: 16px !important;
         line-height: 19px !important;
     }

     .mb-15 {
         margin-bottom: 15px !important;
     }

     .mt-20 {
         margin-top: 20px !important;
     }

     .lg\:p-12 {
         padding: 30px 3rem;
     }




 }