    .login-modal {
      width: 350px;
      margin: 50px auto;
      height: auto;
    }
    
    .modal-content {
      height: 87%;
      border-radius: 4px;
    }
    
    .custom-modal-header {
      background-color: #0066cc;
      color: white;
      border-radius: 4px 4px 0 0;
    }
    
    .custom-modal-header .modal-title {
      margin-left: 16px;
      font-size: 16px;
    }
    
    .custom-modal-body {
      padding: 32px 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      line-height: normal;
    }
    
    .logo-container img {
      height: auto;
      margin-bottom: 18px;
    }
    
    .form-group {
      text-align: left;
      margin-bottom: 10px;
      margin-top: 10px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: normal;
      color: #FFFFFF;
    }
    
    .form-group input,
    .form-group select {
      width: 100%;
      font-size: 12px;
    }
    
    .form-group select {
      padding-right: 8px;
    }
    
    .help-section {
      text-align: center;
      margin-top: 12px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .need-help {
      color: #FFFFFF;
      font-size: 14px;
    }
    
    .contact-support {
      color: #0DA3F8;
      font-weight: bold;
      margin-bottom: 20px;
      font-size: 14px;
      cursor: pointer;
    }

     .contact-support:focus {
      outline: 2px solid #0DA3F8;
      outline-offset: 2px;
      border-radius: 1px;
     }
    
    .cybersecurity-logo {
      text-align: center;
    }
    
    .cybersecurity-logo img {
      max-width: 100px;
      height: auto;
    }
    
    .custom-modal-footer {
      background-color: #000;
      padding: 10px 16px;
      border-radius: 0 0 4px 4px;
      text-align: right;
    }
    
    .custom-btn {
      padding: 10px 10px;
      background-color: #666;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.3s;
      height: 35px;
      display: inline-block;
      vertical-align: middle;
      line-height: 15px;
      box-sizing: border-box;
      margin-right: 8px;
    }
    
    .custom-btn:last-child {
      margin-right: 0;
    }
    
    .custom-btn:hover {
      background-color: #555;
      color: white;
    }
    
    .custom-btn-primary {
      border: 2px solid #0DA3F8;
      line-height:11px;
    }
    
    .custom-btn-primary:hover {
      background-color: #0056b3;
    }
    
    /* Password Visibility Toggle */
    .password-field-container {
      position: relative;
      width: 100%;
    }
    
    .password-toggle-icon {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      cursor: pointer;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.6;
      transition: opacity 0.3s;
    }
    
    .password-toggle-icon:hover {
      opacity: 1;
    }
    
    .password-toggle-icon.show-password {
      background-image: url('../../../icons/white/visibility.svg');
    }
    
    .password-toggle-icon.hide-password {
      background-image: url('../../../icons/white/visibility_off.svg');
    }
    
    .form-group input[type="password"],
    .form-group input[type="text"] {
      padding-right: 40px; /* Make space for the icon */
    }    
    
    /* Container Styles */
    .container-full-width {
      width: 100%;
      padding: 0;
    }
    
    /* Language span hidden */
    .lang-hidden {
      display: none;
    }
    
    /* Form flex styles */
    .form-flex-column {
      display: flex;
      flex-direction: column;
    }
    
    /* Error message container */
    .error-message-container {
      text-align: left;
      margin-left: -16px;
      margin-right: -16px;
    }
    
    /* Hidden message */
    .message-hidden {
      display: none;
    }
    
    /* Error message styling */
    .error-message {
      color: white;
      font-weight: normal;
      font-size: 12px;
      background-color: #530F0F;
      padding: 5px;
      display: flex;
      align-items: center;
    }
    
    /* Error icon */
    .error-icon {
      width: 20px;
      height: 20px;
      margin-right: 10px;
      flex-shrink: 0;
    }
    
    /* Form labels */
    .form-label {
      margin-bottom: 5px;
      font-size: 12px;
      cursor: pointer;
    }
    
    /* Loading modal styles */
    .loading-modal {
      display: none;
      z-index: 9999;
    }
    
    /* Fade background modal when loading */
    body.loading #loginModal .modal-content {
      opacity: 0.5;
      transition: opacity 0.3s ease;
    }
    
    /* Loading content container */
    .loading-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }
    
    .loading-modal .progressMask {
      background: transparent;
    }
    
    /* Contact modal styles */
    .contact-modal-hidden {
      display: none;
    }
    
    /* Support content container */
    .support-content-container {
      text-align: left;
      margin: 16px 0;
    }
    
    /* Support email text */
    .support-email-text {
      margin-bottom: 20px;
      font-size: 16px;
      color: #ffffff;
    }
    
    /* Support phone text */
    .support-phone-text {
      font-size: 16px;
      color: #ffffff;
    }
    
    /* Back arrow icon */
    .back-arrow-icon {
      width: 15px;
      height: 15px;
      margin-right: 5px;
    }