body {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .logo {
    width: 120px;
    display: block;
    margin: 0 auto 1rem;
  }
  
  h1 {
    color: #f37021;
    text-align: left;
    margin-bottom: 0.5rem;
  }
  
  .login-text, .login-bottom {
    text-align: left;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .login-text a, .login-bottom a {
    color: #f37021;
    text-decoration: none;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  input, select, button {
    margin: 0.5rem 0;
    padding: 0.75rem;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  input:focus, select:focus {
    outline: none;
    border-color: #f37021;
  }
  
  button {
    background-color: #f37021;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #e75c0c;
  }
  
  select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23f37021" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px 18px;
  }
  
  .referral-note {
    color: #f37021;
    font-size: 0.9rem;
    margin: 0.3rem 0;
  }
  
  .terms {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .terms a {
    color: #f37021;
    text-decoration: underline;
  }
  
  .password-wrapper {
    position: relative;
  }
  
  .password-wrapper input {
    padding-right: 40px;
  }
  
  .password-wrapper .toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #f37021;
    font-size: 18px;
  }
  