.devise-login-container {
    display: flex;
    max-width: 900px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .devise-login-box {
    flex: 1;
    padding: 40px;
    text-align: center;
    background: #ffffff;
  }
  
  .devise-login-box h2 {
    color: #028004;
    margin-bottom: 20px;
  }
  
  .devise-input-group {
    margin-bottom: 15px;
  }
  
  .devise-input-group input {
    width: 80%;
    max-width: 420px;
    margin: 0 auto; /* center shorter inputs */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    text-align: left;
  }

  /* Input with icon */
  .input-with-icon {
    position: relative;
  }

  .input-with-icon .input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 16px;
  }

  .input-with-icon input {
    padding-left: 5px; /* make room for icon */
    width: 80%;
    max-width: 420px;
    margin: 0 auto;
    box-sizing: border-box;
    text-align: left;
  }

  /* Ensure placeholders are left-aligned */
  .devise-input-group input::placeholder {
    text-align: left;
  }
  
  .devise-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
  }
  
  .devise-forgot-password {
    margin-top: 10px;
    text-align: right;
  }
  
  .devise-forgot-password a {
    color: #028004;
    text-decoration: none;
    font-size: 14px;
  }
  
  .devise-actions {
    margin-top: 20px;
  }
  
  .devise-login-button {
    width: 100%;
    background: #028004;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .devise-login-button:hover {
    background: #142453;
  }
  
  .devise-register-link {
    margin-top: 20px;
    font-size: 14px;
  }
  
  .devise-register-link a {
    color: #028004;
    text-decoration: none;
  }

  .devise-links {
    text-align: center;
    margin-top: 20px;
  }
  
  .devise-links a {
    color: #142453;
    text-decoration: none;
  }
  
  .devise-links a:hover {
    text-decoration: underline;
  }
  
  .devise-info-box {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    color: #333;
  }
  
  .devise-info-box h3 {
    color: #028004;
    margin-bottom: 15px;
  }

  .city-of-harare-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .devise-login-container {
      flex-direction: column;
      max-width: 100%;
      margin: 20px;
    }
  
    .devise-login-box,
    .devise-info-box {
      flex: 1;
      padding: 30px;
    }
  }
  