/* ---------------------------- CSS FOR REGISTER-------------------------- */
.register-page .signup-container {
    width: 100%;
    height: auto;
    border: black;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }
  
  .register-page .fish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .register-page .mirror {
    transform: scaleX(-1);
  }
  
  .register-page .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #0093e0;
  }
  
  .register-page .form-control {
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 50px;
    font-size: 1rem;
    box-sizing: border-box;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
  }
  
  .register-page .btn-primary {
    background-color: #0093e0;
    border: none;
    border-radius: 50px;
    padding: 10px;
  }
  
  .register-page .btn-primary:hover {
    background-color: #007bb8;
  }
  
  .register-page .form-check-label {
    font-size: 0.9rem;
  }
  
  .register-page .btn {
    border-radius: 50px;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
  }
  
  @media (max-width: 768px) {
    .register-page .signup-container {
      flex-direction: column;
      padding: 20px 10px;
      align-items: center;
    }
  
    .register-page .fish-side {
      display: none !important;
    }
  
    .register-page .form-content {
      width: 100%;
      padding: 0;
    }
  
    .register-page #personalFields {
      flex-direction: column;
      display: flex;
    }
  
    .register-page #firstNameCol,
    .register-page #lastNameCol,
    .register-page #companyInfo,
    .register-page #companyEmailField,
    .register-page #companyContactField,
    .register-page #emailField {
      width: 100% !important;
      margin-bottom: 10px;
    }
  
    .register-page .form-control.custom-small,
    .register-page .form-control.company-size,
    .register-page .form-control.custom-size {
      width: 100% !important;
    }
  
    .register-page #formTitle {
      font-size: 1.5rem;
    }
  }
  /* ---------------------------- CSS FOR REGISTER-------------------------- */
  
  
  /* ---------------------------- CSS FOR LOGIN-------------------------- */
  .login-container {
    position: relative;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    padding-bottom: 150px; 
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: auto; 
  }
  
  .header-notification-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    position: relative;
  }
  
  .login-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background-image: url('../images/FishBG B.png');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0; 
  }
  
  .login-container a {
    color: #007bff;
    font-weight: bold;
  }
  
  #partnerSwitch:checked {
    background-color: #28a745;
    border-color: #28a745;
  }
  
  .input-group-text {
    background-color: transparent; 
    border: none; 
  }
  
  .form-content {
    position: relative;
    z-index: 1; 
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  /* CAPTCHA Styles */
  .captcha-display {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef) !important;
    border: 2px solid #dee2e6 !important;
    border-radius: 8px !important;
    font-family: 'Courier New', monospace !important;
    font-size: 18px !important;
    font-weight: bold !important;
    letter-spacing: 3px !important;
    color: #495057 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1) !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1) !important;
    /* Prevent text selection and copying */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    /* Prevent context menu */
    -webkit-context-menu: none !important;
    -moz-context-menu: none !important;
    /* Prevent drag */
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
  }

  .captcha-display:hover {
    background: linear-gradient(45deg, #e9ecef, #dee2e6) !important;
  }

  @media (max-width: 768px) {
    .captcha-display {
      font-size: 16px !important;
      letter-spacing: 2px !important;
    }
  }
  /* ---------------------------- CSS FOR LOGIN-------------------------- */
  