    /* Reset and Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
     line-height: 1.6;
     color: #374151;
     background: #ffffff;
<!--      background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #dbeafe 100%);-->
     min-height: 100vh;
 }

 /* Container */
 .container {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 1rem;
 }

 .login-wrapper {
     width: 100%;
     max-width: 28rem;
 }

 /* Header */
 .header {
     text-align: center;
     margin-bottom: 2rem;
 }

 .logo-container {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 5rem;
     height: 5rem;
     background-color:#202020;
     border-radius: 50%;
     margin-bottom: 1rem;
 }

 .logo {
     width: 3.5rem;
     height: 3.5rem;
<!--     filter: brightness(0) invert(1);-->
 }

 .title {
     font-size: 1.875rem;
     font-weight: 700;
     color: #111827;
     margin-bottom: 0.5rem;
 }

 .subtitle {
     color: #6b7280;
     font-size: 1rem;
 }

 /* Form Container */
 .form-container {
     background: white;
     border-radius: 1rem;
     box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
     border: 1px solid #e5e7eb;
     padding: 2rem;
 }

 /* Form Styles */
 .login-form {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .form-group {
     display: flex;
     flex-direction: column;
 }

 .form-label {
     display: block;
     font-size: 0.875rem;
     font-weight: 500;
     color: #374151;
     margin-bottom: 0.5rem;
 }

 .input-wrapper {
     position: relative;
     display: flex;
     align-items: center;
 }

 .input-icon {
     position: absolute;
     left: 0.75rem;
     width: 1.25rem;
     height: 1.25rem;
     color: #9ca3af;
     pointer-events: none;
     z-index: 1;
 }

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 0.55rem 45px;
    }
 .form-input {
     width: 100%;
     padding: 0.75rem 0.75rem 0.75rem 2.5rem;
     border: 1px solid #d1d5db;
     border-radius: 0.5rem;
     font-size: 1rem;
     transition: all 0.2s ease;
     background-color: white;
 }

 .form-input:focus {
     outline: none;
     border-color: #3b82f6;
     box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
 }

 .form-input.error {
     border-color: #ef4444;
     background-color: #fef2f2;
 }

 .password-toggle {
     position: absolute;
     right: 0.75rem;
     background: none;
     border: none;
     cursor: pointer;
     padding: 0.25rem;
     border-radius: 0.25rem;
     transition: background-color 0.2s ease;
 }

 .password-toggle:hover {
     background-color: #f3f4f6;
 }

 .eye-icon {
     width: 1.25rem;
     height: 1.25rem;
     color: #9ca3af;
 }

 .password-toggle:hover .eye-icon {
     color: #6b7280;
 }

 /* CAPTCHA Styles */
 .captcha-container {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 0.75rem;
 }

 .captcha-display {
     background-color: #f3f4f6;
     border: 2px dashed #d1d5db;
     padding: 0rem 1rem;
     border-radius: 0.5rem;
     flex: 1;
     height: 43.6px;
 }

 .captcha-text {
     width: 158px;
 }

 .captcha-refresh {
     padding: 0.5rem;
     color: #3b82f6;
     background: none;
     border: none;
     border-radius: 0.5rem;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .captcha-refresh:hover {
     color: #1d4ed8;
     background-color: #dbeafe;
 }

 .captcha-refresh svg {
     width: 1.25rem;
     height: 1.25rem;
 }

 /* Error Messages */
 .error-message {
     margin-top: 0.25rem;
     font-size: 0.875rem;
     color: #ef4444;
     min-height: 1.25rem;
 }

 /* Forgot Password */
 .forgot-password {
     text-align: right;
 }

 .forgot-link {
     font-size: 0.875rem;
     color: #3b82f6;
     text-decoration: none;
     transition: color 0.2s ease;
 }

 .forgot-link:hover {
     color: #1d4ed8;
     text-decoration: underline;
 }

 /* Submit Button */
 .submit-btn {
     width: 100%;
     background-color: #1d4ed8;
     color: white;
     padding: 0.75rem 1rem;
     border: none;
     border-radius: 0.5rem;
     font-size: 1rem;
     font-weight: 500;
     cursor: pointer;
     transition: all 0.2s ease;
     position: relative;
     overflow: hidden;
 }

 .submit-btn:hover:not(:disabled) {
     background-color: #1e40af;
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
 }

 .submit-btn:active {
     transform: translateY(0);
 }

 .submit-btn:disabled {
     opacity: 0.6;
     cursor: not-allowed;
     transform: none;
 }

 .btn-text {
     display: block;
 }

 .loading-spinner {
     display: none;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
 }

 .submit-btn.loading .btn-text {
     display: none;
 }

 .submit-btn.loading .loading-spinner {
     display: flex;
 }

 .spinner {
     width: 1.25rem;
     height: 1.25rem;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-top: 2px solid white;
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     0% { transform: rotate(0deg); }
     100% { transform: rotate(360deg); }
 }

 /* Help Text */
 .help-text {
     margin-top: 1.5rem;
     text-align: center;
     font-size: 0.875rem;
     color: #6b7280;
 }

 /* Footer */
 .footer {
     text-align: center;
     margin-top: 2rem;
     font-size: 0.875rem;
     color: #9ca3af;
 }

 /* Responsive Design */
 @media (max-width: 640px) {
     .container {
         padding: 0.5rem;
     }

     .form-container {
         padding: 1.5rem;
     }

     .title {
         font-size: 1.5rem;
     }

     .captcha-container {
         flex-direction: column;
         align-items: stretch;
     }

     .captcha-display {
         text-align: center;
     }
 }

 /* Focus Styles for Accessibility */
 .submit-btn:focus,
 .forgot-link:focus,
 .password-toggle:focus,
 .captcha-refresh:focus {
     outline: 2px solid #3b82f6;
     outline-offset: 2px;
 }

 /* Animation for form validation */
 .form-input.shake {
     animation: shake 0.5s ease-in-out;
 }

 @keyframes shake {
     0%, 100% { transform: translateX(0); }
     25% { transform: translateX(-5px); }
     75% { transform: translateX(5px); }
 }

 /* Success state */
 .form-input.success {
     border-color: #10b981;
     background-color: #f0fdf4;
 }

 /* Hover effects */
 .form-input:hover:not(:focus) {
     border-color: #9ca3af;
 }

 .login-form {
     animation: fadeInUp 0.6s ease-out;
 }

.btn11{border:none;}

.login-wrapper11 {
    width: 100%;
    max-width: 36rem;
}

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }