




.tab-button {
    padding: 10px 20px;
    background: #1b3d2f;
    color: #e0f5ea;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  .tab-button.active {
    background: #3ecf8e;
    color: #001d16;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  }
  
  .auth-button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #3ecf8e, #26b07c);
    border: none;
    color: #001d16;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(62, 207, 142, 0.5);
    transition: all 0.3s ease;
  }
  .auth-button:hover {
    background: #26b07c;
    color: #fff;
  }
  
  .auth-tab { display: none; }
  .auth-tab.active { display: block; }
  
  .password-wrapper {
    position: relative;
    margin-top: 10px;
  }
  .toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1rem;
    color: #666;
  }
  
  .remember-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
  }
  .remember-container input {
    margin-right: 8px;
  }
  
  .forgot-container {
    text-align: right;
    margin-bottom: 15px;
  }
  .forgot-link {
    font-size: 0.9rem;
    color: #3ecf8e;
    text-decoration: none;
  }
  .forgot-link:hover {
    text-decoration: underline;
  }
  